pub trait WeightInfo {
    // Required methods
    fn vest_locked(l: u32, s: u32) -> Weight;
    fn vest_unlocked(l: u32, s: u32) -> Weight;
    fn vest_other_locked(l: u32, s: u32) -> Weight;
    fn vest_other_unlocked(l: u32, s: u32) -> Weight;
    fn vested_transfer(l: u32, s: u32) -> Weight;
    fn force_vested_transfer(l: u32, s: u32) -> Weight;
    fn not_unlocking_merge_schedules(l: u32, s: u32) -> Weight;
    fn unlocking_merge_schedules(l: u32, s: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_vesting.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn vest_locked(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [1, 28].

source§

fn vest_unlocked(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [1, 28].

source§

fn vest_other_locked(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [1, 28].

source§

fn vest_other_unlocked(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [1, 28].

source§

fn vested_transfer(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [0, 27].

source§

fn force_vested_transfer(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [0, 27].

source§

fn not_unlocking_merge_schedules(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [2, 28].

source§

fn unlocking_merge_schedules(l: u32, s: u32) -> Weight

The range of component l is [0, 49]. The range of component s is [2, 28].

Implementors§