From 88907eb9ddfe21d2ae3cfdf9e05167ad7db7b6a3 Mon Sep 17 00:00:00 2001 From: cor Date: Thu, 23 May 2024 14:50:39 +0200 Subject: [PATCH] fix(hubble): go into single-block sync mode --- hubble/src/eth.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hubble/src/eth.rs b/hubble/src/eth.rs index daab50d794..39c0ca034b 100644 --- a/hubble/src/eth.rs +++ b/hubble/src/eth.rs @@ -407,6 +407,7 @@ impl BlockInsert { }) }) .retry(&crate::expo_backoff()) + .when(|e| !matches!(e, FromProviderError::BlockNotFound)) .await .map_err(Into::into) }