commit 22a52266732353bcbc2c4148920e18ef9fdc3103
parent 4a43126547b13ab5b1ac6535705978f700734eaf
Author: Maran <maran.hidskes@gmail.com>
Date: Wed, 27 Feb 2013 18:20:11 +0100
Last few fixes for raw transaction handling
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/gui_qt.py b/lib/gui_qt.py
@@ -942,7 +942,7 @@ class ElectrumWindow(QMainWindow):
out = json.dumps({"hex":str(tx), "complete":tx.is_complete, 'input_info':repr(tx.input_info).replace(' ','')}, indent=4)
f.write(out + '\n')
f.close()
- QMessageBox.information(self, _('Unsigned transaction created'), _("Unsigned transaction was saved to file:") + " " +filename, _('OK'))
+ QMessageBox.information(self, _('Unsigned transaction created'), _("Unsigned transaction was saved to file:") + " " +fileName, _('OK'))
except:
QMessageBox.warning(self, _('Error'), _('Could not write transaction to file'), _('OK'))
@@ -1901,7 +1901,6 @@ class ElectrumWindow(QMainWindow):
if fileName:
with open(fileName, "r") as transaction_file:
file_content = transaction_file.read()
- print file_content
tx = json.loads(str(file_content))
self.create_send_transaction_window(tx)