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

@@ -576,7 +576,7 @@ if __name__ == '__main__':
if change_addr and v == change_addr:
change_addr = k
try:
tx = wallet.mktx( to_address, amount, label, password,
tx = wallet.mktx( [(to_address, amount)], label, password,
fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
except:
import traceback