arbos/merkle_accumulator/
error.rs

1use arb_storage::StorageError;
2
3/// Errors raised by the L2-to-L1 send-merkle accumulator.
4#[derive(Clone, thiserror::Error, Debug)]
5pub enum MerkleAccumulatorError {
6    /// Underlying storage failure.
7    #[error(transparent)]
8    Storage(#[from] StorageError),
9}