mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
check not only 1559 but also 4844 and 7702 for min_priority_fee checking in txpool validation (#15009)
This commit is contained in:
@@ -280,7 +280,7 @@ where
|
||||
// Drop non-local transactions with a fee lower than the configured fee for acceptance into
|
||||
// the pool.
|
||||
if !self.local_transactions_config.is_local(origin, transaction.sender_ref()) &&
|
||||
transaction.is_eip1559() &&
|
||||
transaction.is_dynamic_fee() &&
|
||||
transaction.max_priority_fee_per_gas() < self.minimum_priority_fee
|
||||
{
|
||||
return TransactionValidationOutcome::Invalid(
|
||||
|
||||
Reference in New Issue
Block a user