Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/custom-platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl Platform for CustomPlatform {
provider_factory: types::ProviderFactory<P>,
) -> Result<types::BuiltPayload<Self>, PayloadBuilderError>
where
P: traits::PlatformExecCtxBounds<Self>,
P: traits::PlatformExecBounds<Self>,
{
Optimism::build_payload::<P>(payload, provider_factory)
}
Expand Down
2 changes: 1 addition & 1 deletion src/platform/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub trait Platform:
provider_factory: types::ProviderFactory<P>,
) -> Result<types::BuiltPayload<P>, PayloadBuilderError>
where
P: traits::PlatformExecCtxBounds<Self>;
P: traits::PlatformExecBounds<Self>;
}

/// This is an optional extension trait for platforms that want to provide info
Expand Down
2 changes: 1 addition & 1 deletion src/platform/optimism/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl Platform for Optimism {
provider_factory: types::ProviderFactory<P>,
) -> Result<types::BuiltPayload<P>, PayloadBuilderError>
where
P: traits::PlatformExecCtxBounds<Self>,
P: traits::PlatformExecBounds<Self>,
{
let block = payload.block();
let transactions = extract_external_txs(&payload);
Expand Down
Loading