pub trait WeightInfo {
    // Required methods
    fn spend_local() -> Weight;
    fn propose_spend() -> Weight;
    fn reject_proposal() -> Weight;
    fn approve_proposal(p: u32) -> 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 propose_spend() -> Weight

source

fn reject_proposal() -> Weight

source

fn approve_proposal(p: u32) -> 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 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 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 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].

source§

fn spend() -> Weight

Storage: AssetRate ConversionRateToNative (r:1 w:0) Proof: AssetRate ConversionRateToNative (max_values: None, max_size: Some(36), added: 2511, 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(69), added: 2544, mode: MaxEncodedLen)

source§

fn payout() -> Weight

Storage: Treasury Spends (r:1 w:1) Proof: Treasury Spends (max_values: None, max_size: Some(69), added: 2544, 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(69), added: 2544, mode: MaxEncodedLen)

source§

fn void_spend() -> Weight

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

Implementors§

source§

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