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: 1 addition & 3 deletions crates/revm/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ use std::{

#[cfg(feature = "optimism")]
use crate::optimism;
#[cfg(feature = "optimism")]
use reth_primitives::Log;

/// Main block executor
pub struct Executor<DB>
Expand Down Expand Up @@ -344,7 +342,7 @@ where
)?;

// cast revm logs to reth logs
let logs: Vec<Log> = result.logs().into_iter().map(into_reth_log).collect();
let logs = result.logs().into_iter().map(into_reth_log).collect();

// Push transaction changeset and calculate header bloom filter for receipt.
post_state.add_receipt(
Expand Down