diff options
| author | Matt Corallo <[email protected]> | 2016-10-15 13:19:16 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2016-10-15 13:19:16 -0400 |
| commit | 37aefff5fcf7169a1b07ff8939850f630640f7e7 (patch) | |
| tree | d5aae4fc2f7709e607b545b1039fd57483fea7db /src/wallet/wallet.cpp | |
| parent | Merge #8880: protocol.h: Move MESSAGE_START_SIZE into CMessageHeader (diff) | |
| download | discoin-37aefff5fcf7169a1b07ff8939850f630640f7e7.tar.xz discoin-37aefff5fcf7169a1b07ff8939850f630640f7e7.zip | |
Fix init segfault where InitLoadWallet() calls ATMP before genesis
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index a1f69dd94..6f86f3360 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3467,8 +3467,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; |