fix another bug

This commit is contained in:
Daniel Knopik
2026-05-01 01:02:28 +02:00
parent 16a3dfbc89
commit 3e331ff207

View File

@@ -273,7 +273,8 @@ fn build_gloas_data_columns<T: BeaconChainTypes>(
let index = *col.index();
match GossipVerifiedDataColumn::new_for_block_publishing(col, chain) {
Ok(verified) => Some(verified),
Err(GossipDataColumnError::PriorKnownUnpublished) => None,
Err(GossipDataColumnError::PriorKnownUnpublished)
| Err(GossipDataColumnError::PriorKnown { .. }) => None,
Err(e) => {
warn!(
%slot,