pub trait RuntimeInfo {
    fn native_version(&self) -> &NativeVersion;
fn runtime_version(
        &self,
        ext: &mut dyn Externalities,
        runtime_code: &RuntimeCode<'_>
    ) -> Result<RuntimeVersion>; }
Expand description

Provides runtime information.

Required methods

Native runtime information.

Extract RuntimeVersion of the given runtime_code.

Implementors