Trait substrate_test_runtime_client::ClientExt[][src]

pub trait ClientExt<Block> where
    Block: Block
{ fn finalize_block(
        &self,
        id: BlockId<Block>,
        justification: Option<([u8; 4], Vec<u8, Global>)>
    ) -> Result<(), Error>;
fn genesis_hash(&self) -> <Block as Block>::Hash; }
Expand description

Extension trait for a test client.

Required methods

Finalize a block.

Returns hash of the genesis block.

Implementors