resolve merge conflicts

This commit is contained in:
Eitan Seri-Levi
2026-02-17 18:10:22 -08:00
57 changed files with 802 additions and 495 deletions

View File

@@ -16,6 +16,7 @@ use milhouse::Error as MilhouseError;
use operation_pool::OpPoolError;
use safe_arith::ArithError;
use ssz_types::Error as SszTypesError;
use state_processing::envelope_processing::EnvelopeProcessingError;
use state_processing::{
BlockProcessingError, BlockReplayError, EpochProcessingError, SlotProcessingError,
block_signature_verifier::Error as BlockSignatureVerifierError,
@@ -319,9 +320,10 @@ pub enum BlockProductionError {
FailedToBuildBlobSidecars(String),
MissingExecutionRequests,
SszTypesError(ssz_types::Error),
EnvelopeProcessingError(EnvelopeProcessingError),
BlsError(bls::Error),
// TODO(gloas): Remove this once Gloas is implemented
GloasNotImplemented,
Unexpected(String),
GloasNotImplemented(String),
}
easy_from_to!(BlockProcessingError, BlockProductionError);