From: ThomasV Date: Mon, 5 May 2014 10:17:25 +0000 (+0200) Subject: fix: num_accounts should return only confirmed bip32 accounts X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=7f67b36a19736ade7d1bc3dd6e142fcf95a9fb20 fix: num_accounts should return only confirmed bip32 accounts --- diff --git a/lib/account.py b/lib/account.py index c4cfa6a..66e6b73 100644 --- a/lib/account.py +++ b/lib/account.py @@ -71,7 +71,7 @@ class PendingAccount(Account): def dump(self): return {'pending':self.addresses[0]} - def get_name(self): + def get_name(self, k): return _('Pending account') diff --git a/lib/wallet.py b/lib/wallet.py index 557b8e2..ebd2429 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1391,7 +1391,12 @@ class NewWallet(Deterministic_Wallet): def num_accounts(self): - keys = self.accounts.keys() + keys = [] + for k, v in self.accounts.items(): + if type(v) != BIP32_Account: + continue + keys.append(k) + i = 0 while True: account_id = self.account_id(i)