We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7ab88c commit c277d50Copy full SHA for c277d50
beacon_node/beacon_chain/src/fetch_blobs/mod.rs
@@ -311,6 +311,9 @@ async fn fetch_and_process_blobs_v2<T: BeaconChainTypes>(
311
return Ok(None);
312
}
313
314
+ // Up until this point we have not observed the data columns in the gossip cache, which allows
315
+ // them to arrive independently while this function is running. In publish_fn we will observe
316
+ // them and then publish any columns that had not already been observed.
317
publish_fn(EngineGetBlobsOutput::CustodyColumns(
318
custody_columns_to_import.clone(),
319
));
0 commit comments