From 0e326387654d610a23a6a1e19094c2764d763582 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 4 Jan 2017 11:49:23 +0100 Subject: [PATCH] minor fix --- gui/qt/main_window.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index b96bd6ef..007dc0ed 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2620,7 +2620,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.fx.set_history_config(checked) self.history_list.refresh_headers() if self.fx.is_enabled() and checked: - self.fx.get_historical_rates() + # reset timeout to get historical rates + self.fx.timeout = 0 update_currencies() update_history_cb()