#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use sp_std::marker::PhantomData;
pub trait WeightInfo {
fn set_signal_parameter() -> Weight;
fn send_rating_signal() -> Weight;
fn update_rating_signal() -> Weight;
fn revoke_rating_signal() -> Weight;
fn send_whiteflag_rating_signal() -> Weight;
fn send_signal() -> Weight;
fn update_whiteflag_rating_signal() -> Weight;
fn send_service_signal() -> Weight;
fn revoke_whiteflag_rating_signal() -> Weight;
}
pub struct SubstrateWeights<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeights<T> {
fn set_signal_parameter() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn update_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn update_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn revoke_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn revoke_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_signal() -> Weight {
Weight::from_ref_time(12_000_000)
}
fn send_service_signal() -> Weight {
Weight::from_ref_time(12_000_000)
}
}
impl WeightInfo for () {
fn set_signal_parameter() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn update_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn update_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn revoke_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn revoke_whiteflag_rating_signal() -> Weight {
Weight::from_ref_time(7_000_000)
}
fn send_signal() -> Weight {
Weight::from_ref_time(12_000_000)
}
fn send_service_signal() -> Weight {
Weight::from_ref_time(12_000_000)
}
}