Remove unused error type

This commit is contained in:
Eitan Seri- Levi
2026-01-30 11:19:25 -08:00
parent fadf12e79e
commit 479fa3ff6a

View File

@@ -19,7 +19,6 @@ pub enum Error {
StoreError(store::Error), StoreError(store::Error),
DecodeError(ssz::DecodeError), DecodeError(ssz::DecodeError),
ParentStateMissing(Hash256), ParentStateMissing(Hash256),
StateMissing(Hash256),
BlockReplayError(state_processing::BlockReplayError), BlockReplayError(state_processing::BlockReplayError),
RebuildingStateCaches(BeaconStateError), RebuildingStateCaches(BeaconStateError),
SlotClockError, SlotClockError,
@@ -44,7 +43,6 @@ impl Error {
| Error::DecodeError(_) | Error::DecodeError(_)
| Error::Unexpected(_) | Error::Unexpected(_)
| Error::ParentStateMissing(_) | Error::ParentStateMissing(_)
| Error::StateMissing(_)
| Error::BlockReplayError(_) | Error::BlockReplayError(_)
| Error::RebuildingStateCaches(_) | Error::RebuildingStateCaches(_)
| Error::SlotClockError | Error::SlotClockError