reth_primitives_traits/header/
error.rs

1/// Errors that can occur during header sanity checks.
2#[derive(Debug, PartialEq, Eq)]
3pub enum HeaderError {
4    /// Represents an error when the block difficulty is too large.
5    LargeDifficulty,
6    /// Represents an error when the block extra data is too large.
7    LargeExtraData,
8}