alloy_trie/proof/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Proof verification logic.

#[allow(unused_imports)]
use alloc::vec::Vec;

mod verify;
pub use verify::verify_proof;

mod error;
pub use error::ProofVerificationError;

mod proof_nodes;
pub use proof_nodes::ProofNodes;

mod retainer;
pub use retainer::ProofRetainer;