alloy_trie/proof/mod.rs
1//! Proof verification logic.
2
3#[allow(unused_imports)]
4use alloc::vec::Vec;
5
6mod verify;
7pub use verify::verify_proof;
8
9mod error;
10pub use error::ProofVerificationError;
11
12mod decoded_proof_nodes;
13pub use decoded_proof_nodes::DecodedProofNodes;
14
15mod decoded_retainer;
16pub use decoded_retainer::DecodedProofRetainer;
17
18mod proof_nodes;
19pub use proof_nodes::ProofNodes;
20
21mod retainer;
22pub use retainer::ProofRetainer;