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:
parent
7e373294a5
commit
021feb3187
2 changed files with 1 additions and 8 deletions
|
@ -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; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue