diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-05-08 18:44:21 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-05-25 12:59:22 -0400 |
commit | 8ebcbc85c652665b78dcfd2ad55fa67cafd42c73 (patch) | |
tree | 413e5c364282fdc3316554ca6046463ffa784f8e /src/wallet/walletdb.h | |
parent | d321046f4bb4887742699c586755a21f3a2edbe1 (diff) |
walletdb: don't automatically salvage when corruption is detected
Diffstat (limited to 'src/wallet/walletdb.h')
-rw-r--r-- | src/wallet/walletdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index e2bf229c68..26c7ae4360 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -274,7 +274,7 @@ public: /* verifies the database environment */ static bool VerifyEnvironment(const fs::path& wallet_path, bilingual_str& errorStr); /* verifies the database file */ - static bool VerifyDatabaseFile(const fs::path& wallet_path, std::vector<bilingual_str>& warnings, bilingual_str& errorStr); + static bool VerifyDatabaseFile(const fs::path& wallet_path, bilingual_str& errorStr); //! write the hdchain model (external chain child index counter) bool WriteHDChain(const CHDChain& chain); |