This commit is contained in:
Eitan Seri- Levi
2026-02-03 22:17:52 -08:00
parent 2abb5f122a
commit b5b5b0c654
4 changed files with 6 additions and 8 deletions

View File

@@ -3354,11 +3354,9 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
}
}
// TODO(gloas) handle data column reconstruction for gloas.
ReconstructionOutcome::Payload(_data_column_reconstruction_result) => {
return Err(BlockError::InternalError(
"Not yet implemented for gloas".to_owned(),
));
}
ReconstructionOutcome::Payload(_data_column_reconstruction_result) => Err(
BlockError::InternalError("Not yet implemented for gloas".to_owned()),
),
}
}