tfix #2341 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit e555b982f9a48aefea76dbd6ad1b6e0facad986b DIR parent 08fd7d95ab663cd0f6be02d6e4b7fd0b0c0f631b HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 30 Mar 2017 19:08:16 +0200 fix #2341 Diffstat: M gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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)