From 15b21abc99a10b35dea0ae480e9d20d1aadaca8b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 12 Sep 2018 12:56:51 +0200 Subject: [PATCH] fix fee_histogram notifications --- electrum/gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index ced60a6a0..1dcdd5f7d 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -189,7 +189,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if self.network: self.network_signal.connect(self.on_network_qt) interests = ['updated', 'new_transaction', 'status', - 'banner', 'verified', 'fee'] + 'banner', 'verified', 'fee', 'fee_histogram'] # To avoid leaking references to "self" that prevent the # window from being GC-ed when closed, callbacks should be # methods of this class only, and specifically not be @@ -303,7 +303,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): # FIXME maybe this event should also include which wallet # the tx is for. now all wallets get this. self.tx_notification_queue.put(args[0]) - elif event in ['status', 'banner', 'verified', 'fee']: + elif event in ['status', 'banner', 'verified', 'fee', 'fee_histogram']: # Handle in GUI thread self.network_signal.emit(event, args) else: