tfix: remove deprecated parameter - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit b2e2218556cba29114c33eeada4888d159da5ad7
DIR parent df206719b74a2109be3144ba5dc62c039207df2b
HTML Author: ThomasV <thomasv@gitorious>
Date: Wed, 19 Aug 2015 18:33:49 +0200
fix: remove deprecated parameter
Diffstat:
M gui/qt/main_window.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
t@@ -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):
t@@ -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()