tfix #2341 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0105702d0f274886f509ae0a817b407d6f061327 DIR parent b23f788b4a40bda63dae0fed8e3bb390c4a547fb HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 29 Mar 2017 10:22:19 +0200 fix #2341 Diffstat: M gui/qt/main_window.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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) t@@ -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)