mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-13 14:14:00 +01:00
Fix init segfault where InitLoadWallet() calls ATMP before genesis
This commit is contained in:
@@ -1488,6 +1488,13 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
|
||||
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
|
||||
|
||||
//// debug print
|
||||
|
||||
Reference in New Issue
Block a user