pub trait GetBlockHash {
    // Required method
    fn get_block_hash(&mut self, height: i32) -> u256;
}

Required Methods§

source

fn get_block_hash(&mut self, height: i32) -> u256

Get block hash. Height must be valid or this function will abort.

Implementors§