fix mempool tx fee calculation typo (#531)
This commit is contained in:
parent
7c01acdbf2
commit
45ccf8a64e
@ -120,7 +120,7 @@ class MemPool(object):
|
|||||||
# Convert in_pairs and add the TX to
|
# Convert in_pairs and add the TX to
|
||||||
tx.in_pairs = in_pairs
|
tx.in_pairs = in_pairs
|
||||||
# Compute fee
|
# Compute fee
|
||||||
tx_fee = (sum(v for hashX, v in tx.in_pairs) -
|
tx.fee = (sum(v for hashX, v in tx.in_pairs) -
|
||||||
sum(v for hashX, v in tx.out_pairs))
|
sum(v for hashX, v in tx.out_pairs))
|
||||||
txs[hash] = tx
|
txs[hash] = tx
|
||||||
for hashX, value in itertools.chain(tx.in_pairs, tx.out_pairs):
|
for hashX, value in itertools.chain(tx.in_pairs, tx.out_pairs):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user