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.
5LargeDifficulty,
6/// Represents an error when the block extra data is too large.
7LargeExtraData,
8}