URI: 
       tfix: tx_hash -> prevout_hash - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0e06c218d812fe7df9b711433e769d844286139c
   DIR parent 50c9830f794ae1f7e24668b95c63a166ecc44933
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Thu,  3 Oct 2013 18:58:50 +0200
       
       fix: tx_hash -> prevout_hash
       
       Diffstat:
         M lib/transaction.py                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/transaction.py b/lib/transaction.py
       t@@ -708,7 +708,7 @@ class Transaction:
                        return True
                sum = 0
                for i in self.inputs:
       -            age = verifier.get_confirmations(i["tx_hash"])[0]
       +            age = verifier.get_confirmations(i["prevout_hash"])[0]
                    sum += i["value"] * age
                priority = sum / size
                print_error(priority, threshold)