pub trait Config: Clone + PartialEq {
    type H: CRH;
    type LeafH: CRH;

    const HEIGHT: u8;
}
Expand description

configuration of a Merkle tree

Associated Types

The CRH

Associated Constants

Tree height

Implementors