From 8274164d30045a35106acea15fb7d36009733e3e Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 12 Sep 2024 07:31:28 +0200 Subject: [PATCH] rm unused --- crates/optimism/evm/src/execute.rs | 2 -- 1 file changed, 2 deletions(-) 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() }