aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-09-17 22:23:45 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-11-07 11:35:20 +0000
commit021feb3187b207d511561c1f0ffd7f9e5e0c9c1d (patch)
tree3d05294a61e94c6134871d734381671b7d475d20 /src
parent7e373294a5ae819099c39d9d03d1f5a311d63cfc (diff)
downloadbitcoin-021feb3187b207d511561c1f0ffd7f9e5e0c9c1d.tar.xz
refactor: Drop redudant CWallet::GetDBHandle
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.h7
-rw-r--r--src/wallet/walletdb.cpp2
2 files changed, 1 insertions, 8 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 74de55dcb5..6ad75d3d69 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -732,13 +732,6 @@ public:
*/
mutable RecursiveMutex cs_wallet;
- /** Get database handle used by this wallet. Ideally this function would
- * not be necessary.
- */
- WalletDatabase& GetDBHandle()
- {
- return *database;
- }
WalletDatabase& GetDatabase() const override { return *database; }
/**
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp
index aa3b3c10b0..9ed9818479 100644
--- a/src/wallet/walletdb.cpp
+++ b/src/wallet/walletdb.cpp
@@ -943,7 +943,7 @@ void MaybeCompactWalletDB()
}
for (const std::shared_ptr<CWallet>& pwallet : GetWallets()) {
- WalletDatabase& dbh = pwallet->GetDBHandle();
+ WalletDatabase& dbh = pwallet->GetDatabase();
unsigned int nUpdateCounter = dbh.nUpdateCounter;