mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
fix: tx_hash -> prevout_hash
This commit is contained in:
parent
50c9830f79
commit
0e06c218d8
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue