From 3760a001e138e39e072bd70b71f132c5fced9a27 Mon Sep 17 00:00:00 2001 From: Krishnanand V P Date: Fri, 12 May 2023 19:29:35 +0530 Subject: [PATCH] store : add update_non_fatal_errors method to MockStore --- store/test-store/tests/graph/entity_cache.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/store/test-store/tests/graph/entity_cache.rs b/store/test-store/tests/graph/entity_cache.rs index 974224b1142..1f2ab8a5de5 100644 --- a/store/test-store/tests/graph/entity_cache.rs +++ b/store/test-store/tests/graph/entity_cache.rs @@ -109,6 +109,13 @@ impl WritableStore for MockStore { unimplemented!() } + async fn update_non_fatal_errors( + &self, + _: Option>, + ) -> Result<(), StoreError> { + unimplemented!() + } + fn unfail_non_deterministic_error(&self, _: &BlockPtr) -> Result { unimplemented!() }