From a1586b2bb312b5210138f8eea982ff2e3fe40930 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Thu, 3 Sep 2015 12:36:23 +0300 Subject: [PATCH] main_window: fix typo at do_process_from_text() --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e5f270c7..c8b3a304 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2259,7 +2259,7 @@ class ElectrumWindow(QMainWindow): text = text_dialog(self, _('Input raw transaction'), _("Transaction:"), _("Load transaction")) if not text: return - tx = self.tx_from_text() + tx = self.tx_from_text(text) if tx: self.show_transaction(tx)