referrerpolicy=no-referrer-when-downgrade

Trait pallet_treasury::weights::WeightInfo

source ·
pub trait WeightInfo {
    // Required methods
    fn spend_local() -> Weight;
    fn remove_approval() -> Weight;
    fn on_initialize_proposals(p: u32) -> Weight;
    fn spend() -> Weight;
    fn payout() -> Weight;
    fn check_status() -> Weight;
    fn void_spend() -> Weight;
}
Expand description

Weight functions needed for pallet_treasury.

Required Methods§

source

fn spend_local() -> Weight

source

fn remove_approval() -> Weight

source

fn on_initialize_proposals(p: u32) -> Weight

source

fn spend() -> Weight

source

fn payout() -> Weight

source

fn check_status() -> Weight

source

fn void_spend() -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn spend_local() -> Weight

Storage: Treasury::ProposalCount (r:1 w:1) Proof: Treasury::ProposalCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) Storage: Treasury::Approvals (r:1 w:1) Proof: Treasury::Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) Storage: Treasury::Proposals (r:0 w:1) Proof: Treasury::Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen)

source§

fn remove_approval() -> Weight

Storage: Treasury::Approvals (r:1 w:1) Proof: Treasury::Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen)

source§

fn on_initialize_proposals(p: u32) -> Weight

Storage: Treasury::Deactivated (r:1 w:1) Proof: Treasury::Deactivated (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) Storage: Treasury::LastSpendPeriod (r:1 w:1) Proof: Treasury::LastSpendPeriod (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) The range of component p is [0, 99].

source§

fn spend() -> Weight

Storage: AssetRate::ConversionRateToNative (r:1 w:0) Proof: AssetRate::ConversionRateToNative (max_values: None, max_size: Some(37), added: 2512, mode: MaxEncodedLen) Storage: Treasury::SpendCount (r:1 w:1) Proof: Treasury::SpendCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) Storage: Treasury::Spends (r:0 w:1) Proof: Treasury::Spends (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)

source§

fn payout() -> Weight

Storage: Treasury::Spends (r:1 w:1) Proof: Treasury::Spends (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen) Storage: Assets::Asset (r:1 w:1) Proof: Assets::Asset (max_values: None, max_size: Some(210), added: 2685, mode: MaxEncodedLen) Storage: Assets::Account (r:2 w:2) Proof: Assets::Account (max_values: None, max_size: Some(134), added: 2609, mode: MaxEncodedLen) Storage: System::Account (r:1 w:1) Proof: System::Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)

source§

fn check_status() -> Weight

Storage: Treasury::Spends (r:1 w:1) Proof: Treasury::Spends (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)

source§

fn void_spend() -> Weight

Storage: Treasury::Spends (r:1 w:1) Proof: Treasury::Spends (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)

Implementors§

source§

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