Type Alias storage_proofs_core::merkle::BinaryMerkleTree

source ·
pub type BinaryMerkleTree<H> = DiskTree<H, U2, U0, U0>;
Expand description

A binary merkle tree, where all levels have arity 2. It’s fully persisted to disk.

Aliased Type§

struct BinaryMerkleTree<H> {
    pub inner: MerkleTree<<H as Hasher>::Domain, <H as Hasher>::Function, DiskStore<<H as Hasher>::Domain>>,
    pub h: PhantomData<H>,
}

Fields§

§inner: MerkleTree<<H as Hasher>::Domain, <H as Hasher>::Function, DiskStore<<H as Hasher>::Domain>>§h: PhantomData<H>