Trait WeightInfo

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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>