0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

refactor: Drop redudant CWallet::GetDBHandle

This commit is contained in:
João Barbosa 2020-09-17 22:23:45 +01:00
parent 7e373294a5
commit 021feb3187
2 changed files with 1 additions and 8 deletions

View file

@ -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; }
/**

View file

@ -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;