diff --git a/crates/optimism/evm/src/execute.rs b/crates/optimism/evm/src/execute.rs index 3863522413ea..2cea28bf3ab0 100644 --- a/crates/optimism/evm/src/execute.rs +++ b/crates/optimism/evm/src/execute.rs @@ -256,7 +256,6 @@ impl OpBlockExecutor { } /// Returns mutable reference to the state that wraps the underlying database. - #[allow(unused)] pub fn state_mut(&mut self) -> &mut State { &mut self.state } @@ -385,7 +384,6 @@ impl OpBatchExecutor { } /// Returns mutable reference to the state that wraps the underlying database. - #[allow(unused)] pub fn state_mut(&mut self) -> &mut State { self.executor.state_mut() }