Struct tree_index::Proof
[−]
[src]
pub struct Proof { pub verified_by: usize, pub nodes: Vec<usize>, }
A merkle proof for an index.
Merkle trees are proven by checking the parent hashes.
Fields
verified_by: usize
Index of the node this was verified by.
nodes: Vec<usize>
Merkle proof for the index you pass, written in flat-tree
notation.