Multisig: revert part of "reformatting"

Broken by fe9ec6de06
This commit is contained in:
Neil Booth 2016-02-06 18:02:21 +09:00
parent 4ea9518aef
commit 317e6cea32
1 changed files with 1 additions and 1 deletions

View File

@ -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)