fuel_merkle/
sparse.rs

1mod hash;
2mod merkle_tree;
3mod primitive;
4
5pub(crate) use hash::zero_sum;
6
7pub use merkle_tree::{
8    MerkleTree,
9    MerkleTreeError,
10    MerkleTreeKey,
11};
12pub use primitive::Primitive;
13pub mod in_memory;
14pub mod proof;
15
16use crate::common::Bytes32;
17
18pub const fn empty_sum() -> &'static Bytes32 {
19    zero_sum()
20}