1
0

allow multiple-outputs transactions with mktx()

This commit is contained in:
thomasv
2012-12-05 16:41:39 +01:00
parent 12250995cd
commit c763445734
7 changed files with 20 additions and 15 deletions

View File

@@ -451,7 +451,7 @@ def pay_to(recipient, amount, fee, label):
droid.dialogShow()
try:
tx = wallet.mktx( recipient, amount, label, password, fee)
tx = wallet.mktx( [(recipient, amount)], label, password, fee)
except BaseException, e:
modal_dialog('error', e.message)
droid.dialogDismiss()