mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-31 05:07:12 +00:00
Rename
This commit is contained in:
@@ -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()),
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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,
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user