Skip to content

Commit

Permalink
store : add update_non_fatal_errors method to MockStore
Browse files Browse the repository at this point in the history
  • Loading branch information
incrypto32 committed May 12, 2023
1 parent 367da93 commit 3760a00
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions store/test-store/tests/graph/entity_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ impl WritableStore for MockStore {
unimplemented!()
}

async fn update_non_fatal_errors(
&self,
_: Option<Vec<SubgraphError>>,
) -> Result<(), StoreError> {
unimplemented!()
}

fn unfail_non_deterministic_error(&self, _: &BlockPtr) -> Result<UnfailOutcome, StoreError> {
unimplemented!()
}
Expand Down

0 comments on commit 3760a00

Please sign in to comment.