pub trait WeightInfo {
    // Required methods
    fn propose_bounty(d: u32) -> Weight;
    fn approve_bounty() -> Weight;
    fn propose_curator() -> Weight;
    fn unassign_curator() -> Weight;
    fn accept_curator() -> Weight;
    fn award_bounty() -> Weight;
    fn claim_bounty() -> Weight;
    fn close_bounty_proposed() -> Weight;
    fn close_bounty_active() -> Weight;
    fn extend_bounty_expiry() -> Weight;
    fn spend_funds(b: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_bounties.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn propose_bounty(d: u32) -> Weight

Storage: Bounties BountyCount (r:1 w:1) Proof: Bounties BountyCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) Storage: System Account (r:1 w:1) Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) Storage: Bounties BountyDescriptions (r:0 w:1) Proof: Bounties BountyDescriptions (max_values: None, max_size: Some(314), added: 2789, mode: MaxEncodedLen) Storage: Bounties Bounties (r:0 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) The range of component d is [0, 300].

source§

fn approve_bounty() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: Bounties BountyApprovals (r:1 w:1) Proof: Bounties BountyApprovals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen)

source§

fn propose_curator() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen)

source§

fn unassign_curator() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, 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 accept_curator() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, 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 award_bounty() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: ChildBounties ParentChildBounties (r:1 w:0) Proof: ChildBounties ParentChildBounties (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)

source§

fn claim_bounty() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: System Account (r:3 w:3) Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) Storage: ChildBounties ChildrenCuratorFees (r:1 w:1) Proof: ChildBounties ChildrenCuratorFees (max_values: None, max_size: Some(28), added: 2503, mode: MaxEncodedLen) Storage: Bounties BountyDescriptions (r:0 w:1) Proof: Bounties BountyDescriptions (max_values: None, max_size: Some(314), added: 2789, mode: MaxEncodedLen)

source§

fn close_bounty_proposed() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: ChildBounties ParentChildBounties (r:1 w:0) Proof: ChildBounties ParentChildBounties (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen) Storage: System Account (r:1 w:1) Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) Storage: Bounties BountyDescriptions (r:0 w:1) Proof: Bounties BountyDescriptions (max_values: None, max_size: Some(314), added: 2789, mode: MaxEncodedLen)

source§

fn close_bounty_active() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: ChildBounties ParentChildBounties (r:1 w:0) Proof: ChildBounties ParentChildBounties (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen) Storage: System Account (r:2 w:2) Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) Storage: Bounties BountyDescriptions (r:0 w:1) Proof: Bounties BountyDescriptions (max_values: None, max_size: Some(314), added: 2789, mode: MaxEncodedLen)

source§

fn extend_bounty_expiry() -> Weight

Storage: Bounties Bounties (r:1 w:1) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen)

source§

fn spend_funds(b: u32) -> Weight

Storage: Bounties BountyApprovals (r:1 w:1) Proof: Bounties BountyApprovals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) Storage: Bounties Bounties (r:100 w:100) Proof: Bounties Bounties (max_values: None, max_size: Some(177), added: 2652, mode: MaxEncodedLen) Storage: System Account (r:200 w:200) Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) The range of component b is [0, 100].

Implementors§