electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 5f4bcb420b652b38eaa94755338b5d3f1efa69be
parent be307553b8b2d6a3b43c44277913ef817bd7515e
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 13 Sep 2014 14:54:02 +0200

param to addresses is optional

Diffstat:
Mlib/wallet.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1335,7 +1335,7 @@ class BIP32_HD_Wallet(BIP32_Wallet): def can_create_accounts(self): return self.root_name in self.master_private_keys.keys() - def addresses(self, b): + def addresses(self, b=True): l = BIP32_Wallet.addresses(self, b) if self.next_account: next_address = self.next_account[2]