diff options
author | Anthony Fieroni <bvbfan@abv.bg> | 2020-05-02 12:28:14 +0300 |
---|---|---|
committer | Anthony Fieroni <bvbfan@abv.bg> | 2020-05-07 08:40:10 +0300 |
commit | 9c59f9c285303659ee1beed7555bbb322e6e6981 (patch) | |
tree | 7a80cedaff1d9f61b2a5c4805ff6b3b11ba5636d /src/wallet/wallet.cpp | |
parent | 7bcc42b4035b878719d13201286e322989b415c5 (diff) |
Fix ZapSelectTx to sync wallet spends
Signed-off-by: Anthony Fieroni <bvbfan@abv.bg>
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 2b45c6a536..9abc7ff269 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3074,9 +3074,11 @@ DBErrors CWallet::ZapSelectTx(std::vector<uint256>& vHashIn, std::vector<uint256 { AssertLockHeld(cs_wallet); DBErrors nZapSelectTxRet = WalletBatch(*database, "cr+").ZapSelectTx(vHashIn, vHashOut); - for (uint256 hash : vHashOut) { + for (const uint256& hash : vHashOut) { const auto& it = mapWallet.find(hash); wtxOrdered.erase(it->second.m_it_wtxOrdered); + for (const auto& txin : it->second.tx->vin) + mapTxSpends.erase(txin.prevout); mapWallet.erase(it); NotifyTransactionChanged(this, hash, CT_DELETED); } |