tfix sign_transaction in btcchip too - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit c4ce16e2b621e5103503471baea2e8e103751252 DIR parent 070126104fcdcbd45c4e3c11e3e338bc4a363447 HTML Author: ThomasV <thomasv@gitorious> Date: Thu, 30 Oct 2014 21:10:12 +0100 fix sign_transaction in btcchip too Diffstat: M plugins/btchipwallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/plugins/btchipwallet.py b/plugins/btchipwallet.py t@@ -94,7 +94,7 @@ class Plugin(BasePlugin): def send_tx(self, tx): tx.error = None try: - self.wallet.sign_transaction(tx, None, None) + self.wallet.sign_transaction(tx, None) except Exception as e: tx.error = str(e) t@@ -321,7 +321,7 @@ class BTChipWallet(NewWallet): return b64encode(chr(27 + 4 + (signature[0] & 0x01)) + r + s) - def sign_transaction(self, tx, keypairs, password): + def sign_transaction(self, tx, password): if tx.is_complete(): return if tx.error: