diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-27 19:28:13 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-27 20:25:15 +0200 |
commit | 4c924011f535c46b3bc02bef8b7e2a8ad559d78d (patch) | |
tree | 67c6b7c4f33b6162aaaed943bd061318efa6de8a /src/wallet | |
parent | a550f6e415fd8aec8c45d4704712a408c37ecd18 (diff) | |
parent | b51aaf1c42d9936ddbe8ec48a0d9b675221ab7ba (diff) |
Merge #10075: Remove unused C++ code not covered by unit tests
b51aaf1 Remove unused C++ code not covered by unit tests (practicalswift)
Tree-SHA512: 267bbd87df01a296bf23e82a8b6ee968e13e23a6aaecc535d803890a3e3e9f6208c7fc4c1f97afd98ed3e498b12fe1ada7e3cb2977ad12359a813f57336c74e5
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/db.cpp | 9 | ||||
-rw-r--r-- | src/wallet/db.h | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp index c810476f96..25f6bdd9d9 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -466,15 +466,6 @@ void CDBEnv::CloseDb(const std::string& strFile) } } -bool CDBEnv::RemoveDb(const std::string& strFile) -{ - this->CloseDb(strFile); - - LOCK(cs_db); - int rc = dbenv->dbremove(NULL, strFile.c_str(), NULL, DB_AUTO_COMMIT); - return (rc == 0); -} - bool CDB::Rewrite(CWalletDBWrapper& dbw, const char* pszSkip) { if (dbw.IsDummy()) { diff --git a/src/wallet/db.h b/src/wallet/db.h index a0719820ac..1a46448cc7 100644 --- a/src/wallet/db.h +++ b/src/wallet/db.h @@ -72,7 +72,6 @@ public: void CheckpointLSN(const std::string& strFile); void CloseDb(const std::string& strFile); - bool RemoveDb(const std::string& strFile); DbTxn* TxnBegin(int flags = DB_TXN_WRITE_NOSYNC) { |