aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonas Schnelli <[email protected]>2017-05-04 10:24:14 +0200
committerJonas Schnelli <[email protected]>2017-05-11 15:27:05 +0200
commitbe08fc39d0343de931762eea9deb2b9115624bb8 (patch)
tree14edd7ed145cd0b44fae5840551b4ba0068957f8 /src
parentShow old-fee, increase a new-fee in Qt fee bumper confirmation dialog (diff)
downloaddiscoin-be08fc39d0343de931762eea9deb2b9115624bb8.tar.xz
discoin-be08fc39d0343de931762eea9deb2b9115624bb8.zip
Make sure we always update the table row after a bumpfee call
Diffstat (limited to 'src')
-rw-r--r--src/qt/transactionview.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp
index af48f13c2..4616685d3 100644
--- a/src/qt/transactionview.cpp
+++ b/src/qt/transactionview.cpp
@@ -415,6 +415,9 @@ void TransactionView::bumpFee()
// Bump tx fee over the walletModel
model->bumpFee(hash);
+
+ // Update the table
+ model->getTransactionTableModel()->updateTransaction(hashQStr, CT_UPDATED, false);
}
void TransactionView::copyAddress()