Describe the feature
The current code is missing EIP-2681 nonce validation, this can easily be added just before these lines
|
// Reject transactions over defined size to prevent DOS attacks |
|
let tx_input_len = transaction.input().len(); |
|
if tx_input_len > self.max_tx_input_bytes { |
|
return Err(TransactionValidationOutcome::Invalid( |
|
transaction, |
|
InvalidPoolTransactionError::OversizedData(tx_input_len, self.max_tx_input_bytes), |
|
)) |
|
} |
Additional context
No response
Describe the feature
The current code is missing EIP-2681 nonce validation, this can easily be added just before these lines
reth/crates/transaction-pool/src/validate/eth.rs
Lines 296 to 303 in 24f0365
Additional context
No response