From 5f4bcb420b652b38eaa94755338b5d3f1efa69be Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 13 Sep 2014 14:54:02 +0200 Subject: [PATCH] param to addresses is optional --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 75e5cc207..6047cc28e 100644 --- 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]