mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-04 04:45:10 +02:00
Wallet: Let the interval-flushing thread figure out the filename
This commit is contained in:
@@ -3549,6 +3549,8 @@ bool CWallet::InitLoadWallet()
|
||||
return true;
|
||||
}
|
||||
|
||||
std::atomic<bool> CWallet::fFlushThreadRunning(false);
|
||||
|
||||
void CWallet::postInitProcess(boost::thread_group& threadGroup)
|
||||
{
|
||||
// Add wallet transactions that aren't already in a block to mempool
|
||||
@@ -3556,7 +3558,9 @@ void CWallet::postInitProcess(boost::thread_group& threadGroup)
|
||||
ReacceptWalletTransactions();
|
||||
|
||||
// Run a thread to flush wallet periodically
|
||||
threadGroup.create_thread(boost::bind(&ThreadFlushWalletDB, boost::ref(this->strWalletFile)));
|
||||
if (!CWallet::fFlushThreadRunning.exchange(true)) {
|
||||
threadGroup.create_thread(ThreadFlushWalletDB);
|
||||
}
|
||||
}
|
||||
|
||||
bool CWallet::ParameterInteraction()
|
||||
|
||||
Reference in New Issue
Block a user