From df9c295826fcd780bfa7769f22d88ba3b2c25640 Mon Sep 17 00:00:00 2001 From: DoTheBestToGetTheBest <146037313+DoTheBestToGetTheBest@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:41:47 -0700 Subject: [PATCH] Update noop.rs (#5180) Co-authored-by: Matthias Seitz --- crates/storage/provider/src/test_utils/noop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/storage/provider/src/test_utils/noop.rs b/crates/storage/provider/src/test_utils/noop.rs index 1ff22f98b..34060e091 100644 --- a/crates/storage/provider/src/test_utils/noop.rs +++ b/crates/storage/provider/src/test_utils/noop.rs @@ -264,7 +264,7 @@ impl ChangeSetReader for NoopProvider { impl StateRootProvider for NoopProvider { fn state_root(&self, _state: &BundleStateWithReceipts) -> RethResult { - todo!() + Ok(B256::default()) } }