Update CWallet::MarkAffectedTransactionsDirty() for Sapling.
This commit is contained in:
@@ -1384,11 +1384,19 @@ void CWallet::MarkAffectedTransactionsDirty(const CTransaction& tx)
|
||||
for (const JSDescription& jsdesc : tx.vjoinsplit) {
|
||||
for (const uint256& nullifier : jsdesc.nullifiers) {
|
||||
if (mapSproutNullifiersToNotes.count(nullifier) &&
|
||||
mapWallet.count(mapSproutNullifiersToNotes[nullifier].hash)) {
|
||||
mapWallet.count(mapSproutNullifiersToNotes[nullifier].hash)) {
|
||||
mapWallet[mapSproutNullifiersToNotes[nullifier].hash].MarkDirty();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (const SpendDescription &spend : tx.vShieldedSpend) {
|
||||
uint256 nullifier = spend.nullifier;
|
||||
if (mapSaplingNullifiersToNotes.count(nullifier) &&
|
||||
mapWallet.count(mapSaplingNullifiersToNotes[nullifier].hash)) {
|
||||
mapWallet[mapSaplingNullifiersToNotes[nullifier].hash].MarkDirty();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CWallet::EraseFromWallet(const uint256 &hash)
|
||||
|
||||
Reference in New Issue
Block a user