URI: 
       tFix for tx.inputs break - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 43fd49aa8f93d529cf3ab17ccaa1de0cbc6985ee
   DIR parent 91d0504f315b9162cca59a5d6ef8ce2e4b4d2885
  HTML Author: Neil Booth <kyuupichan@gmail.com>
       Date:   Sat, 23 Jan 2016 15:32:21 +0900
       
       Fix for tx.inputs break
       
       Diffstat:
         M plugins/trezor/plugin.py            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py
       t@@ -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)