main_window: fix typo at do_process_from_text()

This commit is contained in:
Roman Zeyde 2015-09-03 12:36:23 +03:00
parent 2a889d318b
commit a1586b2bb3
1 changed files with 1 additions and 1 deletions

View File

@ -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)