pub trait WeightInfo {
    // Required methods
    fn propose_spend() -> Weight;
    fn reject_proposal() -> Weight;
    fn approve_proposal(p: u32) -> Weight;
    fn on_initialize_proposals(p: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_treasury.

Required Methods§

source

fn propose_spend() -> Weight

source

fn reject_proposal() -> Weight

source

fn approve_proposal(p: u32) -> Weight

source

fn on_initialize_proposals(p: u32) -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn propose_spend() -> 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::Proposals (r:0 w:1) Proof: Treasury::Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen)

source§

fn reject_proposal() -> Weight

Storage: Treasury::Proposals (r:1 w:1) Proof: Treasury::Proposals (max_values: None, max_size: Some(108), added: 2583, 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 approve_proposal(p: u32) -> Weight

Storage: Treasury::Proposals (r:1 w:0) Proof: Treasury::Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen) Storage: Treasury::Approvals (r:1 w:1) Proof: Treasury::Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) The range of component p is [0, 99].

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::Approvals (r:1 w:1) Proof: Treasury::Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) Storage: Treasury::Proposals (r:99 w:99) Proof: Treasury::Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen) Storage: System::Account (r:198 w:198) Proof: System::Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) Storage: Bounties::BountyApprovals (r:1 w:1) Proof: Bounties::BountyApprovals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) The range of component p is [0, 99].

Implementors§

source§

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