This commit is contained in:
ThomasV 2016-08-02 10:52:59 +02:00
parent 84b6a1252a
commit b0f6b8578e
1 changed files with 2 additions and 2 deletions

View File

@ -859,8 +859,8 @@ class Transaction:
threshold = 57600000
weight = 0
for txin in self.inputs():
age = wallet.get_confirmations(txin["prevout_hash"])[0]
weight += txin["value"] * age
height, conf, timestamp = wallet.get_tx_height(txin["prevout_hash"])
weight += txin["value"] * conf
priority = weight / size
print_error(priority, threshold)