pub trait GetRuntimeVersionAt<Block: BlockT> {
    fn runtime_version(
        &self,
        at: &BlockId<Block>
    ) -> Result<RuntimeVersion, String>; }
Expand description

Something that can provide the runtime version at a given block.

Required methods

Returns the version of runtime at the given block.

Implementations on Foreign Types

Implementors