diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-10-06 17:52:05 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-10-08 13:02:14 -0400 |
commit | facec1c643105d0ae74b5d32cf33d593f9e82a36 (patch) | |
tree | 70ddbd9cd41bb94a5667ec8ccc24c45b7ffe203f /src/wallet/walletdb.h | |
parent | 94e6e9f38deeba61655fee432afe42e66ff72ea3 (diff) |
wallet: Avoid showing GUI popups on RPC errors
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 0fee35934d..32475e4d2d 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -263,7 +263,7 @@ public: /* verifies the database environment */ static bool VerifyEnvironment(const fs::path& wallet_path, std::string& errorStr); /* verifies the database file */ - static bool VerifyDatabaseFile(const fs::path& wallet_path, std::string& warningStr, std::string& errorStr); + static bool VerifyDatabaseFile(const fs::path& wallet_path, std::vector<std::string>& warnings, std::string& errorStr); //! write the hdchain model (external chain child index counter) bool WriteHDChain(const CHDChain& chain); |