tfix #2351 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit a8be1aeae8f385bc215d140a6587f0250e92d3de DIR parent 0bc777a10cfadb117fa3fa37c39a592ee1f9559c HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 5 Apr 2017 15:55:15 +0200 fix #2351 Diffstat: M lib/keystore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/keystore.py b/lib/keystore.py t@@ -650,7 +650,7 @@ is_private_key = lambda x: is_xprv(x) or is_private_key_list(x) is_bip32_key = lambda x: is_xprv(x) or is_xpub(x) def bip44_derivation(account_id): - if TESTNET: + if bitcoin.TESTNET: return "m/44'/1'/%d'"% int(account_id) else: return "m/44'/0'/%d'"% int(account_id)