//! MMR-specific batch layer built on the shared [`merkle::batch`](crate::merkle::batch) //! infrastructure. //! //! Provides type aliases that fix the family parameter to [`Family`]. All mutation, //! merkleization, and proof methods are inherited from the shared [`crate::merkle::batch`] module. use crate::merkle::{batch, mmr::Family}; /// A batch whose root digest has not been computed. pub type UnmerkleizedBatch = batch::UnmerkleizedBatch; /// A batch whose root digest has been computed. pub type MerkleizedBatch = batch::MerkleizedBatch;