[Qt] make sure transaction table entry gets updated after bump

This commit is contained in:
Jonas Schnelli
2017-05-24 17:09:01 +02:00
parent 32325a3f58
commit 6d7104c994
3 changed files with 8 additions and 2 deletions

View File

@@ -168,6 +168,10 @@ public:
case CT_UPDATED:
// Miscellaneous updates -- nothing to do, status update will take care of this, and is only computed for
// visible transactions.
for (int i = lowerIndex; i < upperIndex; i++) {
TransactionRecord *rec = &cachedWallet[i];
rec->status.needsUpdate = true;
}
break;
}
}