tTarget Calculation Update - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5a312290e21d1fe00e84d7eb562ee3bd708a1446 DIR parent a18d21d9464adaebda57cb633a6392302ecf2225 HTML Author: wozz <wozz@users.noreply.github.com> Date: Thu, 8 May 2014 12:44:36 -0400 Target Calculation Update fix #686 Diffstat: M lib/blockchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/blockchain.py b/lib/blockchain.py t@@ -277,7 +277,7 @@ class Blockchain(threading.Thread): i -= 1 c = int('0x'+c[0:6],16) - if c > 0x800000: + if c >= 0x800000: c /= 256 i += 1