mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Merge #8928: Fix init segfault where InitLoadWallet() calls ATMP before genesis
37aefff
Fix init segfault where InitLoadWallet() calls ATMP before genesis (Matt Corallo)
This commit is contained in:
commit
c587577356
@ -1493,6 +1493,13 @@ 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
|
||||||
|
@ -3466,8 +3466,6 @@ bool CWallet::InitLoadWallet()
|
|||||||
LogPrintf("mapWallet.size() = %u\n", walletInstance->mapWallet.size());
|
LogPrintf("mapWallet.size() = %u\n", walletInstance->mapWallet.size());
|
||||||
LogPrintf("mapAddressBook.size() = %u\n", walletInstance->mapAddressBook.size());
|
LogPrintf("mapAddressBook.size() = %u\n", walletInstance->mapAddressBook.size());
|
||||||
}
|
}
|
||||||
// Add wallet transactions that aren't already in a block to mapTransactions
|
|
||||||
walletInstance->ReacceptWalletTransactions();
|
|
||||||
|
|
||||||
pwalletMain = walletInstance;
|
pwalletMain = walletInstance;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user