#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(missing_docs)]
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;
pub trait WeightInfo {
fn batch(c: u32, ) -> Weight;
fn as_derivative() -> Weight;
fn batch_all(c: u32, ) -> Weight;
fn dispatch_as() -> Weight;
fn force_batch(c: u32, ) -> Weight;
}
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
fn batch(c: u32, ) -> Weight {
Weight::from_parts(16_943_157, 0)
.saturating_add(Weight::from_parts(4_653_855, 0).saturating_mul(c.into()))
}
fn as_derivative() -> Weight {
Weight::from_parts(5_268_000, 0)
}
fn batch_all(c: u32, ) -> Weight {
Weight::from_parts(16_448_433, 0)
.saturating_add(Weight::from_parts(4_796_983, 0).saturating_mul(c.into()))
}
fn dispatch_as() -> Weight {
Weight::from_parts(9_353_000, 0)
}
fn force_batch(c: u32, ) -> Weight {
Weight::from_parts(17_748_474, 0)
.saturating_add(Weight::from_parts(4_630_079, 0).saturating_mul(c.into()))
}
}
impl WeightInfo for () {
fn batch(c: u32, ) -> Weight {
Weight::from_parts(16_943_157, 0)
.saturating_add(Weight::from_parts(4_653_855, 0).saturating_mul(c.into()))
}
fn as_derivative() -> Weight {
Weight::from_parts(5_268_000, 0)
}
fn batch_all(c: u32, ) -> Weight {
Weight::from_parts(16_448_433, 0)
.saturating_add(Weight::from_parts(4_796_983, 0).saturating_mul(c.into()))
}
fn dispatch_as() -> Weight {
Weight::from_parts(9_353_000, 0)
}
fn force_batch(c: u32, ) -> Weight {
Weight::from_parts(17_748_474, 0)
.saturating_add(Weight::from_parts(4_630_079, 0).saturating_mul(c.into()))
}
}