pub trait WeightInfo {
    fn place_bid(l: u32) -> Weight;
    fn place_bid_max() -> Weight;
    fn retract_bid(l: u32) -> Weight;
    fn set_target() -> Weight;
    fn thaw() -> Weight;
    fn pursue_target_noop() -> Weight;
    fn pursue_target_per_item(b: u32) -> Weight;
    fn pursue_target_per_queue(q: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_gilt.

Required Methods§

Implementations on Foreign Types§

Implementors§