clean up claude progress

This commit is contained in:
Daniel Knopik
2026-04-28 17:20:31 +02:00
parent 3772d2fa5b
commit 132f94c91c
5 changed files with 14 additions and 17 deletions

View File

@@ -640,17 +640,11 @@ impl<E: EthSpec> KzgVerifiedCustodyDataColumn<E> {
pub fn reconstruct_columns(
kzg: &Kzg,
partial_set_of_columns: &[Self],
partial_set_of_columns: Vec<Arc<DataColumnSidecar<E>>>,
spec: &ChainSpec,
) -> Result<Vec<KzgVerifiedCustodyDataColumn<E>>, KzgError> {
let all_data_columns = reconstruct_data_columns(
kzg,
partial_set_of_columns
.iter()
.map(|d| d.clone_arc())
.collect::<Vec<_>>(),
spec,
)?;
let all_data_columns =
reconstruct_data_columns(kzg, partial_set_of_columns.to_vec(), spec)?;
let seen_timestamp = timestamp_now();