fix: tx_hash -> prevout_hash

This commit is contained in:
thomasv 2013-10-03 18:58:50 +02:00
parent 50c9830f79
commit 0e06c218d8
1 changed files with 1 additions and 1 deletions

View File

@ -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)