pub type HasherMerkleTree<H, E> = GenericHasherMerkleTree<H, E, u64, 3>;
Expand description
Merkle tree generic over [Digest
] hasher H
.
It’s a trinary tree whose nodes are indexed by u64
.
H
is a RustCrypto-compatible hash function.E
is aElement
payload data type for the Merkle tree.
Aliased Type§
struct HasherMerkleTree<H, E> { /* private fields */ }