commit 43fd49aa8f93d529cf3ab17ccaa1de0cbc6985ee
parent 91d0504f315b9162cca59a5d6ef8ce2e4b4d2885
Author: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 23 Jan 2016 15:32:21 +0900
Fix for tx.inputs break
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py
@@ -145,7 +145,7 @@ class TrezorCompatibleWallet(BIP44_Wallet):
prev_tx = {}
# path of the xpubs that are involved
xpub_path = {}
- for txin in tx.inputs:
+ for txin in tx.inputs():
tx_hash = txin['prevout_hash']
ptx = self.transactions.get(tx_hash)