beaconBlockSubscriber: Implement data column sidecars reconstruction with data retrieved from the execution client when receiving a block via gossip. (#15483)

This commit is contained in:
Manu NALEPA
2025-07-16 08:00:23 +02:00
committed by GitHub
parent 3def16caaa
commit d8fedacc26
4 changed files with 263 additions and 65 deletions

View File

@@ -682,7 +682,7 @@ func (s *Service) ReconstructDataColumnSidecars(ctx context.Context, signedROBlo
// Return early if nothing is returned from the EL.
if len(blobAndProofV2s) == 0 {
log.Debug("No blobs returned from EL")
log.Debug("No blobs returned from execution client")
return nil, nil
}
@@ -715,7 +715,7 @@ func (s *Service) ReconstructDataColumnSidecars(ctx context.Context, signedROBlo
verifiedRODataColumns = append(verifiedRODataColumns, verifiedRODataColumn)
}
log.Debug("Data columns successfully reconstructed from the execution client.")
log.Debug("Data columns successfully reconstructed from the execution client")
return verifiedRODataColumns, nil
}