chore: bump op-alloy (#11617)

This commit is contained in:
Matthias Seitz
2024-10-09 18:40:48 +02:00
committed by GitHub
parent 40faed6ea0
commit 076b1a2c22
10 changed files with 58 additions and 70 deletions

View File

@ -1,4 +1,4 @@
use op_alloy_rpc_types_engine::OptimismExecutionPayloadEnvelopeV3;
use op_alloy_rpc_types_engine::OpExecutionPayloadEnvelopeV3;
use reth::rpc::types::engine::{ExecutionPayloadEnvelopeV3, ExecutionPayloadV3};
/// The execution payload envelope type.
@ -7,7 +7,7 @@ pub trait PayloadEnvelopeExt: Send + Sync + std::fmt::Debug {
fn execution_payload(&self) -> ExecutionPayloadV3;
}
impl PayloadEnvelopeExt for OptimismExecutionPayloadEnvelopeV3 {
impl PayloadEnvelopeExt for OpExecutionPayloadEnvelopeV3 {
fn execution_payload(&self) -> ExecutionPayloadV3 {
self.execution_payload.clone()
}