Skip to content
Merged
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
4 changes: 2 additions & 2 deletions crates/optimism/flashblocks/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use reth_primitives_traits::{
};
use reth_revm::{database::StateProviderDatabase, db::State};
use reth_rpc_eth_types::{EthApiError, PendingBlock};
use reth_storage_api::{BlockReaderIdExt, StateProviderFactory};
use reth_storage_api::{noop::NoopProvider, BlockReaderIdExt, StateProviderFactory};
use std::{
pin::Pin,
sync::Arc,
Expand Down Expand Up @@ -154,7 +154,7 @@ impl<
}

let BlockBuilderOutcome { execution_result, block, hashed_state, .. } =
builder.finish(&state_provider)?;
builder.finish(NoopProvider::default())?;

let execution_outcome = ExecutionOutcome::new(
db.take_bundle(),
Expand Down