Fix data columns sorting when reconstructing blobs (#8510)

Closes https://github.com/sigp/lighthouse/issues/8509


  


Co-Authored-By: Antoine James <antoine@ethereum.org>
This commit is contained in:
0xMushow
2025-12-02 04:06:29 +01:00
committed by GitHub
parent f42b14ac58
commit 4fbe517491
3 changed files with 34 additions and 6 deletions

View File

@@ -474,7 +474,7 @@ impl BlockId {
)
.collect::<Result<Vec<_>, _>>()?;
reconstruct_blobs(&chain.kzg, &data_columns, blob_indices, block, &chain.spec).map_err(
reconstruct_blobs(&chain.kzg, data_columns, blob_indices, block, &chain.spec).map_err(
|e| {
warp_utils::reject::custom_server_error(format!(
"Error reconstructing data columns: {e:?}"