Struct merkle::ProofBlock
[−]
[src]
pub struct ProofBlock {
pub node_hash: Vec<u8>,
pub sibling_hash: Positioned<Vec<u8>>,
pub sub_proof: Option<Box<ProofBlock>>,
}A ProofBlock is a linked-list holding the hash of the node, the hash of its sibling node,
and the rest of the inclusion proof.
Fields
node_hash: Vec<u8>
sibling_hash: Positioned<Vec<u8>>
sub_proof: Option<Box<ProofBlock>>