From 0c80ca84572cce457e636396ed303393a8879441 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 3 Jan 2016 20:56:13 +0900 Subject: [PATCH] Get rid of timer_actions hook Nothing uses it. In the unlikely event we need it back, we should call it qt_timer_actions instead as it is QT-only and runs in the QT GUI thread. --- gui/qt/main_window.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 04051ef6a..a86569d36 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -507,7 +507,6 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if self.require_fee_update: self.do_update_fee() self.require_fee_update = False - run_hook('timer_actions') def format_amount(self, x, is_diff=False, whitespaces=False): return format_satoshis(x, is_diff, self.num_zeros, self.decimal_point, whitespaces)