From 5db01290f877ea4b8762c25a343bbcb6ea053ebb Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Fri, 17 Jan 2025 08:03:11 -0500 Subject: [PATCH] chore: remove redundant strategy fn impls (#13838) Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> --- crates/evm/src/execute.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/crates/evm/src/execute.rs b/crates/evm/src/execute.rs index 2b221f14564a..8ebba4c71236 100644 --- a/crates/evm/src/execute.rs +++ b/crates/evm/src/execute.rs @@ -688,20 +688,9 @@ mod tests { &mut self.state } - fn with_state_hook(&mut self, _hook: Option>) {} - fn finish(&mut self) -> BundleState { self.finish_result.clone() } - - fn validate_block_post_execution( - &self, - _block: &RecoveredBlock, - _receipts: &[Receipt], - _requests: &Requests, - ) -> Result<(), ConsensusError> { - Ok(()) - } } #[derive(Clone)]