Trait accumulator::HashReader[][src]

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

Defines the interface between MerkleAccumulator and underlying storage.

Required methods

Return HashValue carried by the node at Position.

Implementors