From f549e15a1282526fad8dc69681e6f0bf2739d013 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 25 Feb 2013 20:46:38 +0100 Subject: [PATCH] fix: unsigned transactions in gui --- lib/gui_qt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index cdfae00ef..6a7002b68 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -927,7 +927,9 @@ class ElectrumWindow(QMainWindow): else: filename = 'unsigned_tx' f = open(filename,'w') - f.write(tx) + import json + out = json.dumps({"hex":str(tx), "complete":tx.is_complete, 'input_info':repr(tx.input_info).replace(' ','')}) + f.write(out + '\n') f.close() QMessageBox.information(self, _('Unsigned transaction'), _("Unsigned transaction was saved to file:") + " " +filename, _('OK'))