pub trait WeightInfo {
Show 15 methods // Required methods fn join() -> Weight; fn bond_extra_transfer() -> Weight; fn bond_extra_reward() -> Weight; fn claim_payout() -> Weight; fn unbond() -> Weight; fn pool_withdraw_unbonded(s: u32) -> Weight; fn withdraw_unbonded_update(s: u32) -> Weight; fn withdraw_unbonded_kill(s: u32) -> Weight; fn create() -> Weight; fn nominate(n: u32) -> Weight; fn set_state() -> Weight; fn set_metadata(n: u32) -> Weight; fn set_configs() -> Weight; fn update_roles() -> Weight; fn chill() -> Weight;
}
Expand description

Weight functions needed for pallet_nomination_pools.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn pool_withdraw_unbonded(s: u32) -> Weight

The range of component s is [0, 100].

source§

fn withdraw_unbonded_update(s: u32) -> Weight

The range of component s is [0, 100].

source§

fn withdraw_unbonded_kill(s: u32) -> Weight

The range of component s is [0, 100].

source§

fn nominate(n: u32) -> Weight

The range of component n is [1, 16].

source§

fn set_metadata(n: u32) -> Weight

The range of component n is [1, 256].

source§

fn join() -> Weight

source§

fn bond_extra_transfer() -> Weight

source§

fn bond_extra_reward() -> Weight

source§

fn claim_payout() -> Weight

source§

fn unbond() -> Weight

source§

fn create() -> Weight

source§

fn set_state() -> Weight

source§

fn set_configs() -> Weight

source§

fn update_roles() -> Weight

source§

fn chill() -> Weight

Implementors§