commit 317e6cea329c0cf32aa7750c8c33615a179e346c
parent 4ea9518aef763533f6529c604a77d8ea176c8a38
Author: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 6 Feb 2016 18:02:21 +0900
Multisig: revert part of "reformatting"
Broken by fe9ec6de068611f1b686c9eca4dd8e3ca7a459b1
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -1566,13 +1566,13 @@ class Deterministic_Wallet(Abstract_Wallet):
class BIP32_Wallet(Deterministic_Wallet):
# abstract class, bip32 logic
+ root_name = 'x/'
def __init__(self, storage):
Deterministic_Wallet.__init__(self, storage)
self.master_public_keys = storage.get('master_public_keys', {})
self.master_private_keys = storage.get('master_private_keys', {})
self.gap_limit = storage.get('gap_limit', 20)
- self.root_name = 'x/'
def is_watching_only(self):
return not bool(self.master_private_keys)