core/txpool: fix typo, no farming

This commit is contained in:
Péter Szilágyi 2024-02-19 18:46:09 +02:00
parent 566d06cf36
commit a0ddb5a023

View file

@ -75,7 +75,7 @@ type AddressReserver func(addr common.Address, reserve bool) error
// //
// Note, the entries here are not arbitrary useful filters, rather each one has // Note, the entries here are not arbitrary useful filters, rather each one has
// a very specific call site in mind and each one can be evaluated very cheaply // a very specific call site in mind and each one can be evaluated very cheaply
// by the pool implementations. Only add new ones that satisfy those contraits. // by the pool implementations. Only add new ones that satisfy those constraints.
type PendingFilter struct { type PendingFilter struct {
MinTip *uint256.Int // Minimum miner tip required to include a transaction MinTip *uint256.Int // Minimum miner tip required to include a transaction
BaseFee *uint256.Int // Minimum 1559 basefee needed to include a transaction BaseFee *uint256.Int // Minimum 1559 basefee needed to include a transaction