Skip to content

Commit

Permalink
chore: rm execution requests from v4 payload fn (#401)
Browse files Browse the repository at this point in the history
closes #395
  • Loading branch information
mattsse authored Jan 25, 2025
1 parent f38e1cc commit 5b28b7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/provider/src/ext/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ pub trait OpEngineApi<N, T> {
&self,
payload: ExecutionPayloadV3,
parent_beacon_block_root: B256,
execution_requests: Vec<Bytes>,
) -> TransportResult<PayloadStatus>;

/// Updates the execution layer client with the given fork choice, as specified for the Shanghai
Expand Down Expand Up @@ -211,10 +210,11 @@ where
&self,
payload: ExecutionPayloadV3,
parent_beacon_block_root: B256,
execution_requests: Vec<Bytes>,
) -> TransportResult<PayloadStatus> {
// Note: The `versioned_hashes` parameter is always an empty array for OP chains.
// Note: The `versioned_hashes`, `execution_requests` parameters are always an empty array
// for OP chains.
let versioned_hashes: Vec<B256> = vec![];
let execution_requests: Vec<Bytes> = vec![];

self.client()
.request(
Expand Down

0 comments on commit 5b28b7b

Please sign in to comment.