commit 0105702d0f274886f509ae0a817b407d6f061327
parent b23f788b4a40bda63dae0fed8e3bb390c4a547fb
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 29 Mar 2017 10:22:19 +0200
fix #2341
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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)