Skip to content

Commit 33e9cf6

Browse files
authored
Merge of #6940
2 parents 59afe41 + 9c1ca43 commit 33e9cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/beacon_chain/src/fetch_blobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub async fn fetch_and_process_engine_blobs<T: BeaconChainTypes>(
9191
.await
9292
.map_err(FetchEngineBlobError::RequestFailed)?;
9393

94-
if response.is_empty() {
94+
if response.is_empty() || response.iter().all(|opt| opt.is_none()) {
9595
debug!(
9696
log,
9797
"No blobs fetched from the EL";

0 commit comments

Comments
 (0)