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

@@ -279,7 +279,7 @@ class ElectrumGui:
password = None
try:
tx = self.wallet.mktx( self.str_recipient, amount, self.str_description, password, fee)
tx = self.wallet.mktx( [(self.str_recipient, amount)], self.str_description, password, fee)
except BaseException, e:
self.show_message(str(e))
return