* remove protoc and token from network tests github action * delete unused beacon chain methods * downgrade writing blobs to store log * reduce diff in block import logic * remove some todo's and deneb built in network * remove unnecessary error, actually use some added metrics * remove some metrics, fix missing components on publish funcitonality * fix status tests * rename sidecar by root to blobs by root * clean up some metrics * remove unnecessary feature gate from attestation subnet tests, clean up blobs by range response code * pawan's suggestion in `protocol_info`, peer score in matching up batch sync block and blobs * fix range tests for deneb * pub block and blob db cache behind the same mutex * remove unused errs and an empty file * move sidecar trait to new file * move types from payload to eth2 crate * update comment and add flag value name * make function private again, remove allow unused * use reth rlp for tx decoding * fix compile after merge * rename kzg commitments * cargo fmt * remove unused dep * Update beacon_node/execution_layer/src/lib.rs Co-authored-by: Pawan Dhananjay <pawandhananjay@gmail.com> * Update beacon_node/beacon_processor/src/lib.rs Co-authored-by: Pawan Dhananjay <pawandhananjay@gmail.com> * pawan's suggestiong for vec capacity * cargo fmt * Revert "use reth rlp for tx decoding" This reverts commit 5181837d81c66dcca4c960a85989ac30c7f806e2. * remove reth rlp --------- Co-authored-by: Pawan Dhananjay <pawandhananjay@gmail.com>
124 lines
3.2 KiB
Rust
124 lines
3.2 KiB
Rust
use crate::chunked_vector::ChunkError;
|
|
use crate::config::StoreConfigError;
|
|
use crate::hot_cold_store::HotColdDBError;
|
|
use ssz::DecodeError;
|
|
use state_processing::BlockReplayError;
|
|
use types::{BeaconStateError, Hash256, InconsistentFork, Slot};
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
SszDecodeError(DecodeError),
|
|
VectorChunkError(ChunkError),
|
|
BeaconStateError(BeaconStateError),
|
|
PartialBeaconStateError,
|
|
HotColdDBError(HotColdDBError),
|
|
DBError {
|
|
message: String,
|
|
},
|
|
RlpError(String),
|
|
BlockNotFound(Hash256),
|
|
NoContinuationData,
|
|
SplitPointModified(Slot, Slot),
|
|
ConfigError(StoreConfigError),
|
|
SchemaMigrationError(String),
|
|
/// The store's `anchor_info` was mutated concurrently, the latest modification wasn't applied.
|
|
AnchorInfoConcurrentMutation,
|
|
/// The store's `blob_info` was mutated concurrently, the latest modification wasn't applied.
|
|
BlobInfoConcurrentMutation,
|
|
/// The block or state is unavailable due to weak subjectivity sync.
|
|
HistoryUnavailable,
|
|
/// State reconstruction cannot commence because not all historic blocks are known.
|
|
MissingHistoricBlocks {
|
|
oldest_block_slot: Slot,
|
|
},
|
|
/// State reconstruction failed because it didn't reach the upper limit slot.
|
|
///
|
|
/// This should never happen (it's a logic error).
|
|
StateReconstructionDidNotComplete,
|
|
StateReconstructionRootMismatch {
|
|
slot: Slot,
|
|
expected: Hash256,
|
|
computed: Hash256,
|
|
},
|
|
BlockReplayError(BlockReplayError),
|
|
AddPayloadLogicError,
|
|
SlotClockUnavailableForMigration,
|
|
UnableToDowngrade,
|
|
InconsistentFork(InconsistentFork),
|
|
}
|
|
|
|
pub trait HandleUnavailable<T> {
|
|
fn handle_unavailable(self) -> std::result::Result<Option<T>, Error>;
|
|
}
|
|
|
|
impl<T> HandleUnavailable<T> for Result<T> {
|
|
fn handle_unavailable(self) -> std::result::Result<Option<T>, Error> {
|
|
match self {
|
|
Ok(x) => Ok(Some(x)),
|
|
Err(Error::HistoryUnavailable) => Ok(None),
|
|
Err(e) => Err(e),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<DecodeError> for Error {
|
|
fn from(e: DecodeError) -> Error {
|
|
Error::SszDecodeError(e)
|
|
}
|
|
}
|
|
|
|
impl From<ChunkError> for Error {
|
|
fn from(e: ChunkError) -> Error {
|
|
Error::VectorChunkError(e)
|
|
}
|
|
}
|
|
|
|
impl From<HotColdDBError> for Error {
|
|
fn from(e: HotColdDBError) -> Error {
|
|
Error::HotColdDBError(e)
|
|
}
|
|
}
|
|
|
|
impl From<BeaconStateError> for Error {
|
|
fn from(e: BeaconStateError) -> Error {
|
|
Error::BeaconStateError(e)
|
|
}
|
|
}
|
|
|
|
impl From<DBError> for Error {
|
|
fn from(e: DBError) -> Error {
|
|
Error::DBError { message: e.message }
|
|
}
|
|
}
|
|
|
|
impl From<StoreConfigError> for Error {
|
|
fn from(e: StoreConfigError) -> Error {
|
|
Error::ConfigError(e)
|
|
}
|
|
}
|
|
|
|
impl From<BlockReplayError> for Error {
|
|
fn from(e: BlockReplayError) -> Error {
|
|
Error::BlockReplayError(e)
|
|
}
|
|
}
|
|
|
|
impl From<InconsistentFork> for Error {
|
|
fn from(e: InconsistentFork) -> Error {
|
|
Error::InconsistentFork(e)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct DBError {
|
|
pub message: String,
|
|
}
|
|
|
|
impl DBError {
|
|
pub fn new(message: String) -> Self {
|
|
Self { message }
|
|
}
|
|
}
|