From e555b982f9a48aefea76dbd6ad1b6e0facad986b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 30 Mar 2017 19:08:16 +0200 Subject: [PATCH] fix #2341 --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e8670942..5425994d 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2860,7 +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_label = self.wallet.get_label(tx.txid()) tx_size = tx.estimated_size() d = WindowModalDialog(self, _('Bump Fee')) vbox = QVBoxLayout(d)