From be08fc39d0343de931762eea9deb2b9115624bb8 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Thu, 4 May 2017 10:24:14 +0200 Subject: [PATCH] Make sure we always update the table row after a bumpfee call --- src/qt/transactionview.cpp | 3 +++ 1 file changed, 3 insertions(+) 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()