We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0e222 commit d11fc16Copy full SHA for d11fc16
src/wallet/wallet.cpp
@@ -815,6 +815,7 @@ bool CWallet::AbandonTransaction(const uint256& hashTx)
815
wtx.setAbandoned();
816
wtx.MarkDirty();
817
wtx.WriteToDisk(&walletdb);
818
+ NotifyTransactionChanged(this, wtx.GetHash(), CT_UPDATED);
819
// Iterate over all its outputs, and mark transactions in the wallet that spend them abandoned too
820
TxSpends::const_iterator iter = mapTxSpends.lower_bound(COutPoint(hashTx, 0));
821
while (iter != mapTxSpends.end() && iter->first.hash == now) {
0 commit comments