diff --git a/src/init.cpp b/src/init.cpp index 2b1fbed072903..d3efc9f9787f1 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1493,6 +1493,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 diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 282917d64f40b..c7f98b238e771 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3466,8 +3466,6 @@ bool CWallet::InitLoadWallet() LogPrintf("mapWallet.size() = %u\n", walletInstance->mapWallet.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;