pub trait WeightInfo {
    fn proxy(p: u32) -> Weight;
    fn proxy_announced(a: u32, p: u32) -> Weight;
    fn remove_announcement(a: u32, p: u32) -> Weight;
    fn reject_announcement(a: u32, p: u32) -> Weight;
    fn announce(a: u32, p: u32) -> Weight;
    fn add_proxy(p: u32) -> Weight;
    fn remove_proxy(p: u32) -> Weight;
    fn remove_proxies(p: u32) -> Weight;
    fn create_pure(p: u32) -> Weight;
    fn kill_pure(p: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_proxy.

Required Methods§

Implementations on Foreign Types§

The range of component p is [1, 31].

The range of component a is [0, 31]. The range of component p is [1, 31].

The range of component a is [0, 31]. The range of component p is [1, 31].

The range of component a is [0, 31]. The range of component p is [1, 31].

The range of component a is [0, 31]. The range of component p is [1, 31].

The range of component p is [1, 31].

The range of component p is [1, 31].

The range of component p is [1, 31].

The range of component p is [1, 31].

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

Implementors§