diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index faf692c7cbfe..6f57a6f060f7 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -22,3 +22,4 @@ revm.workspace = true # common tracing.workspace = true + diff --git a/crates/revm/src/processor.rs b/crates/revm/src/processor.rs index bc2f7b6aeca9..97cba016f197 100644 --- a/crates/revm/src/processor.rs +++ b/crates/revm/src/processor.rs @@ -616,7 +616,7 @@ mod tests { impl StateRootProvider for StateProviderTest { fn state_root(&self, _bundle_state: &BundleStateWithReceipts) -> RethResult { - todo!() + unimplemented!("state root computation is not supported") } }