pub trait WeightInfo {
    // Required methods
    fn pay_with_capacity() -> Weight;
    fn pay_with_capacity_batch_all(n: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_frequency_tx_payment.

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn pay_with_capacity_batch_all(n: u32) -> Weight

The range of component n is [0, 10].

source§

fn pay_with_capacity() -> Weight

Implementors§

source§

impl<T: Config> WeightInfo for SubstrateWeight<T>