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()),
),
}
}

View File

@@ -1,4 +1,4 @@
use crate::data_availability_checker_v2::overflow_lru_cache::{
use crate::data_availability_checker_v2::pending_components_cache::{
DataAvailabilityCheckerInner, ReconstructColumnsDecision,
};
@@ -18,7 +18,7 @@ use types::{
SignedExecutionPayloadBid, Slot,
};
mod overflow_lru_cache;
mod pending_components_cache;
use crate::data_column_verification::{
GossipVerifiedDataColumn, KzgVerifiedCustodyDataColumn, KzgVerifiedDataColumn,

View File

@@ -24,7 +24,7 @@ use bls::get_withdrawal_credentials;
use bls::{
AggregateSignature, Keypair, PublicKey, PublicKeyBytes, SecretKey, Signature, SignatureBytes,
};
use eth2::types::{GraffitiPolicy, SignedBlockContentsTuple, SignedPayloadEnvelopeContentsTuple};
use eth2::types::{GraffitiPolicy, SignedBlockContentsTuple};
use execution_layer::test_utils::generate_genesis_header;
use execution_layer::{
ExecutionLayer,