reth_trie_sparse/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The implementation of sparse MPT.

mod state;
pub use state::*;

mod trie;
pub use trie::*;

pub mod blinded;

/// Re-export sparse trie error types.
pub mod errors {
    pub use reth_execution_errors::{
        SparseStateTrieError, SparseStateTrieErrorKind, SparseStateTrieResult, SparseTrieError,
        SparseTrieErrorKind, SparseTrieResult,
    };
}