From 0105702d0f274886f509ae0a817b407d6f061327 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 29 Mar 2017 10:22:19 +0200 Subject: [PATCH] fix #2341 --- gui/qt/main_window.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index b4067337f..e8670942b 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2860,6 +2860,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): def bump_fee_dialog(self, tx): is_relevant, is_mine, v, fee = self.wallet.get_wallet_delta(tx) + tx_label = wallet.get_label(tx.txid()) tx_size = tx.estimated_size() d = WindowModalDialog(self, _('Bump Fee')) vbox = QVBoxLayout(d) @@ -2893,4 +2894,4 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): return if is_final: new_tx.set_rbf(False) - self.show_transaction(new_tx) + self.show_transaction(new_tx, desc=tx_label)