pub trait GetRelayParentNumberStorage {
    // Required method
    fn get() -> u32;
}
Expand description

An abstraction over reading the ambiently available relay parent block number. This allows it to be mocked during tests and not require actual externalities.

Required Methods§

source

fn get() -> u32

Object Safety§

This trait is not object safe.

Implementors§