|
|
@ -1493,13 +1493,6 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
|
|
|
|
uiInterface.NotifyBlockTip.disconnect(BlockNotifyGenesisWait);
|
|
|
|
uiInterface.NotifyBlockTip.disconnect(BlockNotifyGenesisWait);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
|
|
|
|
// Add wallet transactions that aren't already in a block to mempool
|
|
|
|
|
|
|
|
// Do this here as mempool requires genesis block to be loaded
|
|
|
|
|
|
|
|
if (pwalletMain)
|
|
|
|
|
|
|
|
pwalletMain->ReacceptWalletTransactions();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ********************************************************* Step 11: start node
|
|
|
|
// ********************************************************* Step 11: start node
|
|
|
|
|
|
|
|
|
|
|
|
//// debug print
|
|
|
|
//// debug print
|
|
|
@ -1537,10 +1530,8 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
|
|
|
|
uiInterface.InitMessage(_("Done loading"));
|
|
|
|
uiInterface.InitMessage(_("Done loading"));
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
if (pwalletMain) {
|
|
|
|
if (pwalletMain)
|
|
|
|
// Run a thread to flush wallet periodically
|
|
|
|
pwalletMain->postInitProcess(threadGroup);
|
|
|
|
threadGroup.create_thread(boost::bind(&ThreadFlushWalletDB, boost::ref(pwalletMain->strWalletFile)));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
return !fRequestShutdown;
|
|
|
|
return !fRequestShutdown;
|
|
|
|