fix: parameters

This commit is contained in:
thomasv 2013-02-26 15:13:44 +01:00
parent 131654c147
commit 89958cc687
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ class Commands:
def mktx(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
tx = self._mktx(to_address, amount, fee = None, change_addr = None, from_addr = None)
tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
out = {"hex":str(tx), "complete":tx.is_complete}
if not tx.is_complete:
out['input_info'] = repr(tx.input_info).replace(' ','')
@ -215,7 +215,7 @@ class Commands:
def payto(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
tx = self._mktx(to_address, amount, fee = None, change_addr = None, from_addr = None)
tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
r, h = wallet.sendtx( tx )
print_msg(h)