Browse Source

fix: remove deprecated parameter

283
ThomasV 9 years ago
parent
commit
b2e2218556
  1. 4
      gui/qt/main_window.py

4
gui/qt/main_window.py

@ -2260,7 +2260,7 @@ class ElectrumWindow(QMainWindow):
tx = self.tx_from_text(data)
if not tx:
return
self.show_transaction(tx, prompt_if_unsaved=True)
self.show_transaction(tx)
def read_tx_from_file(self):
@ -2282,7 +2282,7 @@ class ElectrumWindow(QMainWindow):
return
tx = self.tx_from_text(text)
if tx:
self.show_transaction(tx, prompt_if_unsaved=True)
self.show_transaction(tx)
def do_process_from_file(self):
tx = self.read_tx_from_file()

Loading…
Cancel
Save