Rename FlushWalletDB -> CompactWalletDB, add function description

This commit is contained in:
Matt Corallo 2017-01-23 09:27:59 -05:00
parent 735d9b5362
commit 0235be1e7a
3 changed files with 4 additions and 3 deletions

View File

@ -3765,7 +3765,7 @@ void CWallet::postInitProcess(CScheduler& scheduler)
// Run a thread to flush wallet periodically // Run a thread to flush wallet periodically
if (!CWallet::fFlushScheduled.exchange(true)) { if (!CWallet::fFlushScheduled.exchange(true)) {
scheduler.scheduleEvery(MaybeFlushWalletDB, 500); scheduler.scheduleEvery(MaybeCompactWalletDB, 500);
} }
} }

View File

@ -777,7 +777,7 @@ DBErrors CWalletDB::ZapWalletTx(vector<CWalletTx>& vWtx)
return DB_LOAD_OK; return DB_LOAD_OK;
} }
void MaybeFlushWalletDB() void MaybeCompactWalletDB()
{ {
static std::atomic<bool> fOneThread; static std::atomic<bool> fOneThread;
if (fOneThread.exchange(true)) { if (fOneThread.exchange(true)) {

View File

@ -193,6 +193,7 @@ private:
void operator=(const CWalletDB&); void operator=(const CWalletDB&);
}; };
void MaybeFlushWalletDB(); //! Compacts BDB state so that wallet.dat is self-contained (if there are changes)
void MaybeCompactWalletDB();
#endif // BITCOIN_WALLET_WALLETDB_H #endif // BITCOIN_WALLET_WALLETDB_H