From 37e43d9c102d54951240a47f87a4fd9ffa3c7df0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 1 Mar 2018 18:31:16 +0100 Subject: [PATCH] follow up prev commit --- lib/simple_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/simple_config.py b/lib/simple_config.py index d4e29eec7..aaaa51969 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -469,7 +469,7 @@ class SimpleConfig(PrintError): Returns True if an update should be requested. """ now = time.time() - return = now - self.last_time_fee_estimates_requested > 60 + return now - self.last_time_fee_estimates_requested > 60 def requested_fee_estimates(self): self.last_time_fee_estimates_requested = time.time()