pub trait WeightInfo {
    // Required methods
    fn report_awesome(r: u32) -> Weight;
    fn retract_tip() -> Weight;
    fn tip_new(r: u32, t: u32) -> Weight;
    fn tip(t: u32) -> Weight;
    fn close_tip(t: u32) -> Weight;
    fn slash_tip(t: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_tips.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn report_awesome(r: u32) -> Weight

The range of component r is [0, 300].

source§

fn tip_new(r: u32, t: u32) -> Weight

The range of component r is [0, 300]. The range of component t is [1, 13].

source§

fn tip(t: u32) -> Weight

The range of component t is [1, 13].

source§

fn close_tip(t: u32) -> Weight

The range of component t is [1, 13].

source§

fn slash_tip(t: u32) -> Weight

The range of component t is [1, 13].

source§

fn retract_tip() -> Weight

Implementors§