tfix: mktx syntax - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit cd9f2f02d244eb32f70cef65f1f1125c1dd18684
DIR parent 58be7c73c5327ce36c8600523d9229f8df1b98b0
HTML Author: thomasv <thomasv@gitorious>
Date: Wed, 27 Feb 2013 12:47:11 +0100
fix: mktx syntax
Diffstat:
M lib/gui.py | 2 +-
M lib/gui_android.py | 2 +-
M lib/gui_lite.py | 2 +-
M lib/gui_qt.py | 2 +-
M lib/gui_text.py | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
---
DIR diff --git a/lib/gui.py b/lib/gui.py
t@@ -838,7 +838,7 @@ class ElectrumWindow:
password = None
try:
- tx = self.wallet.mktx( [(to_address, amount)], label, password, fee )
+ tx = self.wallet.mktx( [(to_address, amount)], password, fee )
except BaseException, e:
self.show_message(str(e))
return
DIR diff --git a/lib/gui_android.py b/lib/gui_android.py
t@@ -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)], password, fee)
except BaseException, e:
modal_dialog('error', e.message)
droid.dialogDismiss()
DIR diff --git a/lib/gui_lite.py b/lib/gui_lite.py
t@@ -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
DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py
t@@ -909,7 +909,7 @@ class ElectrumWindow(QMainWindow):
password = None
try:
- tx = self.wallet.mktx( [(to_address, amount)], label, password, fee)
+ tx = self.wallet.mktx( [(to_address, amount)], password, fee)
except BaseException, e:
self.show_message(str(e))
return
DIR diff --git a/lib/gui_text.py b/lib/gui_text.py
t@@ -260,7 +260,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)], password, fee)
except BaseException, e:
self.show_message(str(e))
return