logo
pub trait GetBlockHash {
    fn get_block_hash(&self, height: u64) -> Result<BlockHash, Error>;
}
Expand description

Trait for getting block hash by block height

Required Methods

fetch block hash given its height

Implementations on Foreign Types

Implementors