arbos/blockhash/
error.rs

1use arb_storage::StorageError;
2
3/// Errors raised by the L1 blockhashes ring buffer.
4#[derive(Clone, thiserror::Error, Debug)]
5pub enum BlockhashesError {
6    /// Underlying storage failure.
7    #[error(transparent)]
8    Storage(#[from] StorageError),
9}