1
0

fix: mktx syntax

This commit is contained in:
thomasv
2013-02-27 12:47:11 +01:00
parent 58be7c73c5
commit cd9f2f02d2
5 changed files with 5 additions and 5 deletions

View File

@@ -851,7 +851,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