diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-07-06 14:38:35 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-07-26 20:22:49 -0400 |
commit | 0e279fe4899beae8630264ef1fe420dd71f29d5d (patch) | |
tree | 0975073ac2a23aacb92555e48002b41d439142a8 | |
parent | 9f536d4fe949666f14a0bf5b814522cecde71f56 (diff) |
walletdb: Remove unused static functions from walletdb.h
VerifyEnvironment and VerifyDatabaseFile were removed, but their
declarations weren't. Remove those.
-rw-r--r-- | src/wallet/walletdb.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index 6b55361c07..292f831ac3 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -264,10 +264,6 @@ public: DBErrors ZapSelectTx(std::vector<uint256>& vHashIn, std::vector<uint256>& vHashOut); /* Function to determine if a certain KV/key-type is a key (cryptographical key) type */ static bool IsKeyType(const std::string& strType); - /* 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, bilingual_str& errorStr); //! write the hdchain model (external chain child index counter) bool WriteHDChain(const CHDChain& chain); |