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) }