tfix fee_histogram notifications - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 15b21abc99a10b35dea0ae480e9d20d1aadaca8b DIR parent ce4608ae764d7ec73efdcc16eedcf37808f60f95 HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 12 Sep 2018 12:56:51 +0200 fix fee_histogram notifications Diffstat: M electrum/gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -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 t@@ -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: