pub trait HashReader {
    // Required method
    fn get(&self, position: Position) -> Result<HashValue>;
}
Expand description

Defines the interface between MerkleAccumulator and underlying storage.

Required Methods§

source

fn get(&self, position: Position) -> Result<HashValue>

Return HashValue carried by the node at Position.

Implementors§