optional parameters for create_new_address

This commit is contained in:
ThomasV 2014-06-27 11:38:35 +02:00
parent f9985ae233
commit 7a7e65d66c
1 changed files with 1 additions and 1 deletions

View File

@ -1139,7 +1139,7 @@ class Deterministic_Wallet(Abstract_Wallet):
if n > nmax: nmax = n
return nmax + 1
def create_new_address(self, account, for_change):
def create_new_address(self, account=None, for_change=0):
if account is None:
account = self.default_account()
address = account.create_new_address(for_change)