pub trait WeightInfo {
    // Required methods
    fn on_initialize(i: u32) -> Weight;
    fn on_initialize_epoch(i: u32) -> Weight;
    fn request() -> Weight;
}
Expand description

Weight functions needed for pallet_universal_dividend.

Required Methods§

source

fn on_initialize(i: u32) -> Weight

source

fn on_initialize_epoch(i: u32) -> Weight

source

fn request() -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn on_initialize(i: u32) -> Weight

The range of component i is [1, 100].

source§

fn request() -> Weight

source§

fn on_initialize_epoch(i: u32) -> Weight

Implementors§