commit e555b982f9a48aefea76dbd6ad1b6e0facad986b
parent 08fd7d95ab663cd0f6be02d6e4b7fd0b0c0f631b
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 30 Mar 2017 19:08:16 +0200
fix #2341
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)