pub trait WeightInfo {
    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§

Implementors§