Trait pallet_treasury::weights::WeightInfo
source · pub trait WeightInfo {
// Required methods
fn spend() -> 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;
}
Expand description
Weight functions needed for pallet_treasury.
Required Methods§
fn spend() -> 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
Implementations on Foreign Types§
source§impl WeightInfo for ()
impl WeightInfo for ()
source§fn spend() -> Weight
fn 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 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
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
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
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
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
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:100 w:100)
Proof: Treasury Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen)
Storage: System Account (r:200 w:200)
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, 100]
.