Browse Source

Merge pull request #1439 from romanz/master

main_window: fix typo at do_process_from_text()
283
ThomasV 9 years ago
parent
commit
b4b7e6e777
  1. 2
      gui/qt/main_window.py

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

Loading…
Cancel
Save