tupdate calls to is_complete() method. fixes #693 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 84954b0778c3406ab2e00470da7e4d05ce75721f DIR parent a21a175679ed288e23f308924a1ef55fb941b7a0 HTML Author: ThomasV <thomasv@gitorious> Date: Wed, 21 May 2014 11:36:37 +0200 update calls to is_complete() method. fixes #693 Diffstat: M gui/qt/transaction_dialog.py | 4 ++-- M lib/transaction.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- DIR diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py t@@ -106,7 +106,7 @@ class TxDialog(QDialog): def save(self): - name = 'signed_%s.txn' % (self.tx.hash()[0:8]) if self.tx.is_complete else 'unsigned.txn' + name = 'signed_%s.txn' % (self.tx.hash()[0:8]) if self.tx.is_complete() else 'unsigned.txn' fileName = self.parent.getSaveFileName(_("Select where to save your signed transaction"), name, "*.txn") if fileName: with open(fileName, "w+") as f: t@@ -119,7 +119,7 @@ class TxDialog(QDialog): is_relevant, is_mine, v, fee = self.wallet.get_tx_value(self.tx) - if self.tx.is_complete: + if self.tx.is_complete(): status = _("Status: Signed") self.sign_button.hide() tx_hash = self.tx.hash() DIR diff --git a/lib/transaction.py b/lib/transaction.py t@@ -378,7 +378,7 @@ def get_address_from_output_script(bytes): class Transaction: - def __init__(self, raw, is_complete = True): + def __init__(self, raw): self.raw = raw self.deserialize() self.inputs = self.d['inputs']