nimbus-eth1/nimbus/utils/tx_pool/tx_tasks
jangko fdbabf0b80
unify eip1559TxNormalization
result.gasPrice = baseFee + min(result.maxPriorityFee, result.maxFee - baseFee)
cannot be simplified into
result.gasPrice = min(result.maxPriorityFee + baseFee, result.maxFee)
the expression is not commutative
2022-04-05 17:22:46 +07:00
..
tx_add.nim TxPool implementation 2022-01-22 08:26:57 +02:00
tx_bucket.nim TxPool implementation 2022-01-22 08:26:57 +02:00
tx_classify.nim unify eip1559TxNormalization 2022-04-05 17:22:46 +07:00
tx_dispose.nim TxPool implementation 2022-01-22 08:26:57 +02:00
tx_head.nim Fix typo in tx_head.nim delta calculator 2022-04-04 17:07:48 +01:00
tx_packer.nim unify eip1559TxNormalization 2022-04-05 17:22:46 +07:00
tx_recover.nim Support for local accounts (#1019) 2022-03-31 09:21:36 +01:00