From 7c56d034748a2eb1596ba7078d7fd1fbbedfa203 Mon Sep 17 00:00:00 2001 From: blackjok3r Date: Sun, 14 Apr 2019 15:51:26 +0800 Subject: [PATCH] try wallet fix --- src/wallet/walletdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index 83a79821f..3428b8b75 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -961,7 +961,7 @@ DBErrors CWalletDB::LoadWallet(CWallet* pwallet) if (GetTransaction(hash,tx,blockhash,true)) { CWalletTx wtx(pwallet,tx); - pwallet->AddToWallet(wtx, true, NULL); + pwallet->AddToWallet(wtx, false, NULL); reAdded++; } }