fix: remove deprecated parameter

This commit is contained in:
ThomasV 2015-08-19 18:33:49 +02:00
parent df206719b7
commit b2e2218556
1 changed files with 2 additions and 2 deletions

View File

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