electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 37e43d9c102d54951240a47f87a4fd9ffa3c7df0
parent fb761b7c126b87c5397bb4128e7a9629a84c1f48
Author: ThomasV <thomasv@electrum.org>
Date:   Thu,  1 Mar 2018 18:31:16 +0100

follow up prev commit

Diffstat:
Mlib/simple_config.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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()