URI: 
       tfix ledger signing issue - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 78e9a84c2f2ed09800f0e571e39c0bf071fca64d
   DIR parent 963dcf0c6b2829ae9344c15379999ebea4aa8f25
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 27 Jan 2016 16:54:28 +0100
       
       fix ledger signing issue
       
       Diffstat:
         M plugins/ledger/ledger.py            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/plugins/ledger/ledger.py b/plugins/ledger/ledger.py
       t@@ -191,7 +191,7 @@ class BTChipWallet(BIP44_Wallet):
                pin = ""
                rawTx = tx.serialize()
                # Fetch inputs of the transaction to sign
       -        for txinput in tx.inputs:
       +        for txinput in tx.inputs():
                    if ('is_coinbase' in txinput and txinput['is_coinbase']):
                        self.give_error("Coinbase not supported")     # should never happen
                    inputs.append([ self.transactions[txinput['prevout_hash']].raw,