From 43fd49aa8f93d529cf3ab17ccaa1de0cbc6985ee Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 23 Jan 2016 15:32:21 +0900 Subject: [PATCH] Fix for tx.inputs break --- plugins/trezor/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py index b792e0ac5..dc2e9e4cb 100644 --- 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)