1
0

send from domain in mktx (fix #294)

This commit is contained in:
thomasv
2013-09-15 14:51:46 +02:00
parent 7fb406cc05
commit 58ab37d056
2 changed files with 20 additions and 13 deletions

View File

@@ -886,7 +886,7 @@ class ElectrumWindow(QMainWindow):
def send_tx(self, to_address, amount, fee, label, password):
try:
tx = self.wallet.mktx( [(to_address, amount)], password, fee, account=self.current_account)
tx = self.wallet.mktx_from_account( [(to_address, amount)], password, fee, self.current_account)
except BaseException, e:
traceback.print_exc(file=sys.stdout)
self.show_message(str(e))