watching_only wallets have a single account

This commit is contained in:
ThomasV 2014-04-25 11:48:13 +02:00
parent 242eca8821
commit 217900bbfa
1 changed files with 3 additions and 4 deletions

View File

@ -239,7 +239,7 @@ class NewWallet:
def can_create_accounts(self):
return True
return not self.is_watching_only()
def set_up_to_date(self,b):
@ -322,9 +322,8 @@ class NewWallet:
def create_watching_only_wallet(self, xpub):
self.storage.put('seed_version', self.seed_version, True)
self.add_master_public_key("m/", xpub)
xpub0 = self.add_master_keys("m/", "m/0'", None)
account = BIP32_Account({'xpub':xpub0})
self.add_account("m/0'", account)
account = BIP32_Account({'xpub':xpub})
self.add_account("m/", account)
def create_accounts(self, password):