Trait GetBestHash

Source
pub trait GetBestHash<Block: BlockT> {
    // Required method
    fn best_hash(&self) -> Block::Hash;
}
Expand description

Blockchain client for retrieving the latest Partner Chain block hash

Required Methods§

Source

fn best_hash(&self) -> Block::Hash

Returns the latest Partner Chain block hash

Implementors§

Source§

impl<Block, T> GetBestHash<Block> for T
where T: HeaderBackend<Block>, Block: BlockT,