Skip to content

Commit ab3347e

Browse files
authored
fix: call validate_execution_requests from validate_version_specific_fields for ethereum engine validator (paradigmxyz/reth#14932)
1 parent 3d3b63a commit ab3347e

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

node/src/engine.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -150,19 +150,6 @@ where
150150
Types: EngineTypes<PayloadAttributes = OpPayloadAttributes, ExecutionData = OpExecutionData>,
151151
P: StateProviderFactory + Unpin + 'static,
152152
{
153-
fn validate_execution_requests(
154-
&self,
155-
requests: &alloy_eips::eip7685::Requests,
156-
) -> Result<(), EngineObjectValidationError> {
157-
// according to op spec, execution requests must be empty
158-
if !requests.is_empty() {
159-
return Err(EngineObjectValidationError::InvalidParams(
160-
"NonEmptyExecutionRequests".to_string().into(),
161-
))
162-
}
163-
Ok(())
164-
}
165-
166153
fn validate_version_specific_fields(
167154
&self,
168155
version: EngineApiMessageVersion,

0 commit comments

Comments
 (0)