type conversion; fixes #1077

This commit is contained in:
ThomasV 2015-03-14 16:22:47 +01:00
parent 1ab37fc82b
commit 4a4624cb85
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ class Commands:
amount = int(100000000*amount)
final_outputs.append(('address', to_address, amount))
if fee: fee = int(100000000*fee)
if fee is not None: fee = int(100000000*fee)
return self.wallet.mktx(final_outputs, self.password, fee , change_addr, domain)
def mktx(self, to_address, amount, fee = None, change_addr = None, domain = None):