diff --git a/beacon_node/beacon_chain/src/fetch_blobs.rs b/beacon_node/beacon_chain/src/fetch_blobs.rs index 5bc2b92ec3..6e365f936d 100644 --- a/beacon_node/beacon_chain/src/fetch_blobs.rs +++ b/beacon_node/beacon_chain/src/fetch_blobs.rs @@ -91,7 +91,7 @@ pub async fn fetch_and_process_engine_blobs( .await .map_err(FetchEngineBlobError::RequestFailed)?; - if response.is_empty() { + if response.is_empty() || response.iter().all(|opt| opt.is_none()) { debug!( log, "No blobs fetched from the EL";