pub trait WeightInfo {
    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§

Implementations on Foreign Types§

The range of component p is [0, 99].

The range of component p is [0, 100].

Implementors§