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

@@ -760,7 +760,7 @@ class MiniActuator:
fee = bitcoin(1) / 1000
try:
tx = self.wallet.mktx(dest_address, amount, "", password, fee)
tx = self.wallet.mktx([(dest_address, amount)], "", password, fee)
except BaseException as error:
QMessageBox.warning(parent_window, _('Error'), str(error), _('OK'))
return False