Migrate to Weight::from_parts (#6794)

* Migrate to from_parts

Have a look at https://github.com/ggwpez/substrate-scripts/blob/master/migrate-from-parts.py

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Adapt to master

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* update lockfile for {"substrate"}

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: parity-processbot <>
This commit is contained in:
Oliver Tale-Yazdi
2023-03-03 00:32:30 +01:00
committed by GitHub
parent c5637bda91
commit 177bedc160
187 changed files with 4080 additions and 4088 deletions
+183 -186
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -133,9 +133,9 @@ mod tests {
parameter_types! { parameter_types! {
pub const BlockHashCount: u64 = 250; pub const BlockHashCount: u64 = 250;
pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder() pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder()
.base_block(Weight::from_ref_time(10)) .base_block(Weight::from_parts(10, 0))
.for_class(DispatchClass::all(), |weight| { .for_class(DispatchClass::all(), |weight| {
weight.base_extrinsic = Weight::from_ref_time(100); weight.base_extrinsic = Weight::from_parts(100, 0);
}) })
.for_class(DispatchClass::non_mandatory(), |weight| { .for_class(DispatchClass::non_mandatory(), |weight| {
weight.max_total = Some(Weight::from_parts(1024, u64::MAX)); weight.max_total = Some(Weight::from_parts(1024, u64::MAX));
+1 -1
View File
@@ -196,7 +196,7 @@ pub mod pallet {
/// ///
/// Origin must match the `ValidityOrigin`. /// Origin must match the `ValidityOrigin`.
#[pallet::call_index(0)] #[pallet::call_index(0)]
#[pallet::weight(Weight::from_ref_time(200_000_000) + T::DbWeight::get().reads_writes(4, 1))] #[pallet::weight(Weight::from_parts(200_000_000, 0) + T::DbWeight::get().reads_writes(4, 1))]
pub fn create_account( pub fn create_account(
origin: OriginFor<T>, origin: OriginFor<T>,
who: T::AccountId, who: T::AccountId,
@@ -52,7 +52,7 @@ parameter_types! {
/// 95th: 9_411_822 /// 95th: 9_411_822
/// 75th: 9_272_878 /// 75th: 9_272_878
pub const BlockExecutionWeight: Weight = pub const BlockExecutionWeight: Weight =
Weight::from_ref_time(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(9_246_456)); Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(9_246_456), 0);
} }
#[cfg(test)] #[cfg(test)]
@@ -52,7 +52,7 @@ parameter_types! {
/// 95th: 105_257 /// 95th: 105_257
/// 75th: 104_647 /// 75th: 104_647
pub const ExtrinsicBaseWeight: Weight = pub const ExtrinsicBaseWeight: Weight =
Weight::from_ref_time(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(104_517)); Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(104_517), 0);
} }
#[cfg(test)] #[cfg(test)]
@@ -51,8 +51,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 169 nanoseconds. // Minimum execution time: 169 nanoseconds.
Weight::from_ref_time(211_793) Weight::from_parts(211_793, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn subtraction(_i: u32, ) -> Weight { fn subtraction(_i: u32, ) -> Weight {
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 172 nanoseconds. // Minimum execution time: 172 nanoseconds.
Weight::from_ref_time(210_656) Weight::from_parts(210_656, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn multiplication(_i: u32, ) -> Weight { fn multiplication(_i: u32, ) -> Weight {
@@ -69,8 +69,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 173 nanoseconds. // Minimum execution time: 173 nanoseconds.
Weight::from_ref_time(216_851) Weight::from_parts(216_851, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn division(_i: u32, ) -> Weight { fn division(_i: u32, ) -> Weight {
@@ -78,16 +78,16 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 171 nanoseconds. // Minimum execution time: 171 nanoseconds.
Weight::from_ref_time(210_747) Weight::from_parts(210_747, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn hashing() -> Weight { fn hashing() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 24_801_107 nanoseconds. // Minimum execution time: 24_801_107 nanoseconds.
Weight::from_ref_time(25_036_984_000) Weight::from_parts(25_036_984_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 100]`. /// The range of component `i` is `[0, 100]`.
fn sr25519_verification(i: u32, ) -> Weight { fn sr25519_verification(i: u32, ) -> Weight {
@@ -95,9 +95,9 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 197 nanoseconds. // Minimum execution time: 197 nanoseconds.
Weight::from_ref_time(220_000) Weight::from_parts(220_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 18_400 // Standard Error: 18_400
.saturating_add(Weight::from_ref_time(47_299_555).saturating_mul(i.into())) .saturating_add(Weight::from_parts(47_299_555, 0).saturating_mul(i.into()))
} }
} }
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_256_446 nanoseconds. // Minimum execution time: 6_256_446 nanoseconds.
Weight::from_ref_time(6_327_881_000) Weight::from_parts(6_327_881_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 140_664 // Standard Error: 140_664
.saturating_add(Weight::from_ref_time(5_840_511).saturating_mul(v.into())) .saturating_add(Weight::from_parts(5_840_511, 0).saturating_mul(v.into()))
// Standard Error: 14_381_047 // Standard Error: 14_381_047
.saturating_add(Weight::from_ref_time(1_543_872_437).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_543_872_437, 0).saturating_mul(d.into()))
} }
/// The range of component `v` is `[1000, 2000]`. /// The range of component `v` is `[1000, 2000]`.
/// The range of component `t` is `[500, 1000]`. /// The range of component `t` is `[500, 1000]`.
@@ -68,11 +68,11 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 4_822_640 nanoseconds. // Minimum execution time: 4_822_640 nanoseconds.
Weight::from_ref_time(4_870_840_000) Weight::from_parts(4_870_840_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 150_173 // Standard Error: 150_173
.saturating_add(Weight::from_ref_time(5_687_544).saturating_mul(v.into())) .saturating_add(Weight::from_parts(5_687_544, 0).saturating_mul(v.into()))
// Standard Error: 15_353_175 // Standard Error: 15_353_175
.saturating_add(Weight::from_ref_time(1_784_144_004).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_784_144_004, 0).saturating_mul(d.into()))
} }
} }
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_917 nanoseconds. // Minimum execution time: 1_917 nanoseconds.
Weight::from_ref_time(1_973_000) Weight::from_parts(1_973_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(370).saturating_mul(b.into())) .saturating_add(Weight::from_parts(370, 0).saturating_mul(b.into()))
} }
/// The range of component `b` is `[0, 3932160]`. /// The range of component `b` is `[0, 3932160]`.
fn remark_with_event(b: u32, ) -> Weight { fn remark_with_event(b: u32, ) -> Weight {
@@ -62,10 +62,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_274 nanoseconds. // Minimum execution time: 7_274 nanoseconds.
Weight::from_ref_time(7_405_000) Weight::from_parts(7_405_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(1_731).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_731, 0).saturating_mul(b.into()))
} }
/// Storage: System Digest (r:1 w:1) /// Storage: System Digest (r:1 w:1)
/// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured)
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `495` // Estimated: `495`
// Minimum execution time: 3_833 nanoseconds. // Minimum execution time: 3_833 nanoseconds.
Weight::from_ref_time(3_995_000) Weight::from_parts(3_995_000, 0)
.saturating_add(Weight::from_proof_size(495)) .saturating_add(Weight::from_parts(0, 495))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_820 nanoseconds. // Minimum execution time: 1_820 nanoseconds.
Weight::from_ref_time(1_857_000) Weight::from_parts(1_857_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1_965 // Standard Error: 1_965
.saturating_add(Weight::from_ref_time(676_171).saturating_mul(i.into())) .saturating_add(Weight::from_parts(676_171, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
} }
/// Storage: Skipped Metadata (r:0 w:0) /// Storage: Skipped Metadata (r:0 w:0)
@@ -103,10 +103,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_856 nanoseconds. // Minimum execution time: 1_856 nanoseconds.
Weight::from_ref_time(1_919_000) Weight::from_parts(1_919_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 850 // Standard Error: 850
.saturating_add(Weight::from_ref_time(484_572).saturating_mul(i.into())) .saturating_add(Weight::from_parts(484_572, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
} }
/// Storage: Skipped Metadata (r:0 w:0) /// Storage: Skipped Metadata (r:0 w:0)
@@ -117,12 +117,12 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `120 + p * (69 ±0)` // Measured: `120 + p * (69 ±0)`
// Estimated: `121 + p * (70 ±0)` // Estimated: `121 + p * (70 ±0)`
// Minimum execution time: 3_847 nanoseconds. // Minimum execution time: 3_847 nanoseconds.
Weight::from_ref_time(3_930_000) Weight::from_parts(3_930_000, 0)
.saturating_add(Weight::from_proof_size(121)) .saturating_add(Weight::from_parts(0, 121))
// Standard Error: 1_032 // Standard Error: 1_032
.saturating_add(Weight::from_ref_time(1_006_925).saturating_mul(p.into())) .saturating_add(Weight::from_parts(1_006_925, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(70).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into()))
} }
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1846` // Measured: `1846`
// Estimated: `19186` // Estimated: `19186`
// Minimum execution time: 59_681 nanoseconds. // Minimum execution time: 59_681 nanoseconds.
Weight::from_ref_time(60_540_000) Weight::from_parts(60_540_000, 0)
.saturating_add(Weight::from_proof_size(19186)) .saturating_add(Weight::from_parts(0, 19186))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1740` // Measured: `1740`
// Estimated: `19114` // Estimated: `19114`
// Minimum execution time: 58_266 nanoseconds. // Minimum execution time: 58_266 nanoseconds.
Weight::from_ref_time(59_035_000) Weight::from_parts(59_035_000, 0)
.saturating_add(Weight::from_proof_size(19114)) .saturating_add(Weight::from_parts(0, 19114))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -96,8 +96,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `2081` // Measured: `2081`
// Estimated: `25798` // Estimated: `25798`
// Minimum execution time: 65_043 nanoseconds. // Minimum execution time: 65_043 nanoseconds.
Weight::from_ref_time(65_583_000) Weight::from_parts(65_583_000, 0)
.saturating_add(Weight::from_proof_size(25798)) .saturating_add(Weight::from_parts(0, 25798))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -47,49 +47,49 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn transfer() -> Weight { fn transfer() -> Weight {
// Minimum execution time: 40_902 nanoseconds. // Minimum execution time: 40_902 nanoseconds.
Weight::from_ref_time(41_638_000 as u64) Weight::from_parts(41_638_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn transfer_keep_alive() -> Weight { fn transfer_keep_alive() -> Weight {
// Minimum execution time: 30_093 nanoseconds. // Minimum execution time: 30_093 nanoseconds.
Weight::from_ref_time(30_732_000 as u64) Weight::from_parts(30_732_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn set_balance_creating() -> Weight { fn set_balance_creating() -> Weight {
// Minimum execution time: 23_901 nanoseconds. // Minimum execution time: 23_901 nanoseconds.
Weight::from_ref_time(24_238_000 as u64) Weight::from_parts(24_238_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn set_balance_killing() -> Weight { fn set_balance_killing() -> Weight {
// Minimum execution time: 26_402 nanoseconds. // Minimum execution time: 26_402 nanoseconds.
Weight::from_ref_time(27_026_000 as u64) Weight::from_parts(27_026_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:2 w:2) // Storage: System Account (r:2 w:2)
fn force_transfer() -> Weight { fn force_transfer() -> Weight {
// Minimum execution time: 40_328 nanoseconds. // Minimum execution time: 40_328 nanoseconds.
Weight::from_ref_time(41_242_000 as u64) Weight::from_parts(41_242_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn transfer_all() -> Weight { fn transfer_all() -> Weight {
// Minimum execution time: 35_401 nanoseconds. // Minimum execution time: 35_401 nanoseconds.
Weight::from_ref_time(36_122_000 as u64) Weight::from_parts(36_122_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
fn force_unreserve() -> Weight { fn force_unreserve() -> Weight {
// Minimum execution time: 20_178 nanoseconds. // Minimum execution time: 20_178 nanoseconds.
Weight::from_ref_time(20_435_000 as u64) Weight::from_parts(20_435_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1887` // Measured: `1887`
// Estimated: `8288` // Estimated: `8288`
// Minimum execution time: 52_484 nanoseconds. // Minimum execution time: 52_484 nanoseconds.
Weight::from_ref_time(53_580_000) Weight::from_parts(53_580_000, 0)
.saturating_add(Weight::from_proof_size(8288)) .saturating_add(Weight::from_parts(0, 8288))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1713` // Measured: `1713`
// Estimated: `7777` // Estimated: `7777`
// Minimum execution time: 36_900 nanoseconds. // Minimum execution time: 36_900 nanoseconds.
Weight::from_ref_time(37_642_000) Weight::from_parts(37_642_000, 0)
.saturating_add(Weight::from_proof_size(7777)) .saturating_add(Weight::from_parts(0, 7777))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1363` // Measured: `1363`
// Estimated: `3098` // Estimated: `3098`
// Minimum execution time: 24_647 nanoseconds. // Minimum execution time: 24_647 nanoseconds.
Weight::from_ref_time(24_978_000) Weight::from_parts(24_978_000, 0)
.saturating_add(Weight::from_proof_size(3098)) .saturating_add(Weight::from_parts(0, 3098))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -100,8 +100,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1921` // Measured: `1921`
// Estimated: `5701` // Estimated: `5701`
// Minimum execution time: 34_307 nanoseconds. // Minimum execution time: 34_307 nanoseconds.
Weight::from_ref_time(34_814_000) Weight::from_parts(34_814_000, 0)
.saturating_add(Weight::from_proof_size(5701)) .saturating_add(Weight::from_parts(0, 5701))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -116,8 +116,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1883` // Measured: `1883`
// Estimated: `10891` // Estimated: `10891`
// Minimum execution time: 50_665 nanoseconds. // Minimum execution time: 50_665 nanoseconds.
Weight::from_ref_time(51_270_000) Weight::from_parts(51_270_000, 0)
.saturating_add(Weight::from_proof_size(10891)) .saturating_add(Weight::from_parts(0, 10891))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1885` // Measured: `1885`
// Estimated: `7777` // Estimated: `7777`
// Minimum execution time: 47_045 nanoseconds. // Minimum execution time: 47_045 nanoseconds.
Weight::from_ref_time(47_702_000) Weight::from_parts(47_702_000, 0)
.saturating_add(Weight::from_proof_size(7777)) .saturating_add(Weight::from_parts(0, 7777))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -142,8 +142,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1361` // Measured: `1361`
// Estimated: `2587` // Estimated: `2587`
// Minimum execution time: 23_366 nanoseconds. // Minimum execution time: 23_366 nanoseconds.
Weight::from_ref_time(23_786_000) Weight::from_parts(23_786_000, 0)
.saturating_add(Weight::from_proof_size(2587)) .saturating_add(Weight::from_parts(0, 2587))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -59,10 +59,10 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `242` // Measured: `242`
// Estimated: `3102` // Estimated: `3102`
// Minimum execution time: 23_613 nanoseconds. // Minimum execution time: 23_613 nanoseconds.
Weight::from_ref_time(25_287_910) Weight::from_parts(25_287_910, 0)
.saturating_add(Weight::from_proof_size(3102)) .saturating_add(Weight::from_parts(0, 3102))
// Standard Error: 8 // Standard Error: 8
.saturating_add(Weight::from_ref_time(701).saturating_mul(d.into())) .saturating_add(Weight::from_parts(701, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -75,8 +75,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `334` // Measured: `334`
// Estimated: `3549` // Estimated: `3549`
// Minimum execution time: 10_746 nanoseconds. // Minimum execution time: 10_746 nanoseconds.
Weight::from_ref_time(11_000_000) Weight::from_parts(11_000_000, 0)
.saturating_add(Weight::from_proof_size(3549)) .saturating_add(Weight::from_parts(0, 3549))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -87,8 +87,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `354` // Measured: `354`
// Estimated: `2652` // Estimated: `2652`
// Minimum execution time: 9_691 nanoseconds. // Minimum execution time: 9_691 nanoseconds.
Weight::from_ref_time(9_929_000) Weight::from_parts(9_929_000, 0)
.saturating_add(Weight::from_proof_size(2652)) .saturating_add(Weight::from_parts(0, 2652))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -101,8 +101,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `562` // Measured: `562`
// Estimated: `5255` // Estimated: `5255`
// Minimum execution time: 34_060 nanoseconds. // Minimum execution time: 34_060 nanoseconds.
Weight::from_ref_time(34_436_000) Weight::from_parts(34_436_000, 0)
.saturating_add(Weight::from_proof_size(5255)) .saturating_add(Weight::from_parts(0, 5255))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -115,8 +115,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `558` // Measured: `558`
// Estimated: `5255` // Estimated: `5255`
// Minimum execution time: 22_544 nanoseconds. // Minimum execution time: 22_544 nanoseconds.
Weight::from_ref_time(23_053_000) Weight::from_parts(23_053_000, 0)
.saturating_add(Weight::from_proof_size(5255)) .saturating_add(Weight::from_parts(0, 5255))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -129,8 +129,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `538` // Measured: `538`
// Estimated: `5143` // Estimated: `5143`
// Minimum execution time: 18_886 nanoseconds. // Minimum execution time: 18_886 nanoseconds.
Weight::from_ref_time(19_300_000) Weight::from_parts(19_300_000, 0)
.saturating_add(Weight::from_proof_size(5143)) .saturating_add(Weight::from_parts(0, 5143))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -147,8 +147,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `966` // Measured: `966`
// Estimated: `12964` // Estimated: `12964`
// Minimum execution time: 75_378 nanoseconds. // Minimum execution time: 75_378 nanoseconds.
Weight::from_ref_time(76_364_000) Weight::from_parts(76_364_000, 0)
.saturating_add(Weight::from_proof_size(12964)) .saturating_add(Weight::from_parts(0, 12964))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -165,8 +165,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `614` // Measured: `614`
// Estimated: `7746` // Estimated: `7746`
// Minimum execution time: 39_206 nanoseconds. // Minimum execution time: 39_206 nanoseconds.
Weight::from_ref_time(39_721_000) Weight::from_parts(39_721_000, 0)
.saturating_add(Weight::from_proof_size(7746)) .saturating_add(Weight::from_parts(0, 7746))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -183,8 +183,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `882` // Measured: `882`
// Estimated: `10349` // Estimated: `10349`
// Minimum execution time: 52_829 nanoseconds. // Minimum execution time: 52_829 nanoseconds.
Weight::from_ref_time(53_521_000) Weight::from_parts(53_521_000, 0)
.saturating_add(Weight::from_proof_size(10349)) .saturating_add(Weight::from_parts(0, 10349))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -195,8 +195,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `390` // Measured: `390`
// Estimated: `2652` // Estimated: `2652`
// Minimum execution time: 14_913 nanoseconds. // Minimum execution time: 14_913 nanoseconds.
Weight::from_ref_time(15_100_000) Weight::from_parts(15_100_000, 0)
.saturating_add(Weight::from_proof_size(2652)) .saturating_add(Weight::from_parts(0, 2652))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -212,14 +212,14 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `0 + b * (360 ±0)` // Measured: `0 + b * (360 ±0)`
// Estimated: `897 + b * (7858 ±0)` // Estimated: `897 + b * (7858 ±0)`
// Minimum execution time: 4_300 nanoseconds. // Minimum execution time: 4_300 nanoseconds.
Weight::from_ref_time(4_380_000) Weight::from_parts(4_380_000, 0)
.saturating_add(Weight::from_proof_size(897)) .saturating_add(Weight::from_parts(0, 897))
// Standard Error: 17_926 // Standard Error: 17_926
.saturating_add(Weight::from_ref_time(32_426_151).saturating_mul(b.into())) .saturating_add(Weight::from_parts(32_426_151, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_proof_size(7858).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 7858).saturating_mul(b.into()))
} }
} }
@@ -63,10 +63,10 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `710` // Measured: `710`
// Estimated: `10848` // Estimated: `10848`
// Minimum execution time: 50_470 nanoseconds. // Minimum execution time: 50_470 nanoseconds.
Weight::from_ref_time(52_331_249) Weight::from_parts(52_331_249, 0)
.saturating_add(Weight::from_proof_size(10848)) .saturating_add(Weight::from_parts(0, 10848))
// Standard Error: 10 // Standard Error: 10
.saturating_add(Weight::from_ref_time(683).saturating_mul(d.into())) .saturating_add(Weight::from_parts(683, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -81,8 +81,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `764` // Measured: `764`
// Estimated: `7775` // Estimated: `7775`
// Minimum execution time: 17_620 nanoseconds. // Minimum execution time: 17_620 nanoseconds.
Weight::from_ref_time(17_884_000) Weight::from_parts(17_884_000, 0)
.saturating_add(Weight::from_proof_size(7775)) .saturating_add(Weight::from_parts(0, 7775))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -97,8 +97,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `942` // Measured: `942`
// Estimated: `7875` // Estimated: `7875`
// Minimum execution time: 30_087 nanoseconds. // Minimum execution time: 30_087 nanoseconds.
Weight::from_ref_time(30_599_000) Weight::from_parts(30_599_000, 0)
.saturating_add(Weight::from_proof_size(7875)) .saturating_add(Weight::from_parts(0, 7875))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -113,8 +113,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `942` // Measured: `942`
// Estimated: `7875` // Estimated: `7875`
// Minimum execution time: 41_533 nanoseconds. // Minimum execution time: 41_533 nanoseconds.
Weight::from_ref_time(42_196_000) Weight::from_parts(42_196_000, 0)
.saturating_add(Weight::from_proof_size(7875)) .saturating_add(Weight::from_parts(0, 7875))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -127,8 +127,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `807` // Measured: `807`
// Estimated: `5272` // Estimated: `5272`
// Minimum execution time: 21_473 nanoseconds. // Minimum execution time: 21_473 nanoseconds.
Weight::from_ref_time(22_029_000) Weight::from_parts(22_029_000, 0)
.saturating_add(Weight::from_proof_size(5272)) .saturating_add(Weight::from_parts(0, 5272))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -145,8 +145,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `778` // Measured: `778`
// Estimated: `12920` // Estimated: `12920`
// Minimum execution time: 74_169 nanoseconds. // Minimum execution time: 74_169 nanoseconds.
Weight::from_ref_time(74_700_000) Weight::from_parts(74_700_000, 0)
.saturating_add(Weight::from_proof_size(12920)) .saturating_add(Weight::from_parts(0, 12920))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -167,8 +167,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `1074` // Measured: `1074`
// Estimated: `15472` // Estimated: `15472`
// Minimum execution time: 52_267 nanoseconds. // Minimum execution time: 52_267 nanoseconds.
Weight::from_ref_time(52_826_000) Weight::from_parts(52_826_000, 0)
.saturating_add(Weight::from_proof_size(15472)) .saturating_add(Weight::from_parts(0, 15472))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -189,8 +189,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `1293` // Measured: `1293`
// Estimated: `18075` // Estimated: `18075`
// Minimum execution time: 63_634 nanoseconds. // Minimum execution time: 63_634 nanoseconds.
Weight::from_ref_time(64_522_000) Weight::from_parts(64_522_000, 0)
.saturating_add(Weight::from_proof_size(18075)) .saturating_add(Weight::from_parts(0, 18075))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -64,18 +64,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `0 + m * (3233 ±0) + p * (3223 ±0)` // Measured: `0 + m * (3233 ±0) + p * (3223 ±0)`
// Estimated: `16322 + m * (7809 ±16) + p * (10238 ±16)` // Estimated: `16322 + m * (7809 ±16) + p * (10238 ±16)`
// Minimum execution time: 16_904 nanoseconds. // Minimum execution time: 16_904 nanoseconds.
Weight::from_ref_time(17_214_000) Weight::from_parts(17_214_000, 0)
.saturating_add(Weight::from_proof_size(16322)) .saturating_add(Weight::from_parts(0, 16322))
// Standard Error: 47_361 // Standard Error: 47_361
.saturating_add(Weight::from_ref_time(5_256_277).saturating_mul(m.into())) .saturating_add(Weight::from_parts(5_256_277, 0).saturating_mul(m.into()))
// Standard Error: 47_361 // Standard Error: 47_361
.saturating_add(Weight::from_ref_time(8_009_631).saturating_mul(p.into())) .saturating_add(Weight::from_parts(8_009_631, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7809).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 7809).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(10238).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 10238).saturating_mul(p.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -88,14 +88,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `168 + m * (32 ±0)` // Measured: `168 + m * (32 ±0)`
// Estimated: `664 + m * (32 ±0)` // Estimated: `664 + m * (32 ±0)`
// Minimum execution time: 15_332 nanoseconds. // Minimum execution time: 15_332 nanoseconds.
Weight::from_ref_time(14_449_763) Weight::from_parts(14_449_763, 0)
.saturating_add(Weight::from_proof_size(664)) .saturating_add(Weight::from_parts(0, 664))
// Standard Error: 18 // Standard Error: 18
.saturating_add(Weight::from_ref_time(1_763).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_763, 0).saturating_mul(b.into()))
// Standard Error: 194 // Standard Error: 194
.saturating_add(Weight::from_ref_time(14_894).saturating_mul(m.into())) .saturating_add(Weight::from_parts(14_894, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -110,14 +110,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `168 + m * (32 ±0)` // Measured: `168 + m * (32 ±0)`
// Estimated: `3308 + m * (64 ±0)` // Estimated: `3308 + m * (64 ±0)`
// Minimum execution time: 17_885 nanoseconds. // Minimum execution time: 17_885 nanoseconds.
Weight::from_ref_time(17_047_265) Weight::from_parts(17_047_265, 0)
.saturating_add(Weight::from_proof_size(3308)) .saturating_add(Weight::from_parts(0, 3308))
// Standard Error: 20 // Standard Error: 20
.saturating_add(Weight::from_ref_time(1_432).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_432, 0).saturating_mul(b.into()))
// Standard Error: 212 // Standard Error: 212
.saturating_add(Weight::from_ref_time(24_204).saturating_mul(m.into())) .saturating_add(Weight::from_parts(24_204, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(Weight::from_proof_size(64).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -140,18 +140,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `490 + m * (32 ±0) + p * (36 ±0)` // Measured: `490 + m * (32 ±0) + p * (36 ±0)`
// Estimated: `6025 + m * (165 ±0) + p * (180 ±0)` // Estimated: `6025 + m * (165 ±0) + p * (180 ±0)`
// Minimum execution time: 23_932 nanoseconds. // Minimum execution time: 23_932 nanoseconds.
Weight::from_ref_time(25_045_483) Weight::from_parts(25_045_483, 0)
.saturating_add(Weight::from_proof_size(6025)) .saturating_add(Weight::from_parts(0, 6025))
// Standard Error: 50 // Standard Error: 50
.saturating_add(Weight::from_ref_time(2_502).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_502, 0).saturating_mul(b.into()))
// Standard Error: 525 // Standard Error: 525
.saturating_add(Weight::from_ref_time(16_887).saturating_mul(m.into())) .saturating_add(Weight::from_parts(16_887, 0).saturating_mul(m.into()))
// Standard Error: 518 // Standard Error: 518
.saturating_add(Weight::from_ref_time(116_253).saturating_mul(p.into())) .saturating_add(Weight::from_parts(116_253, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(165).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 165).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -164,13 +164,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `940 + m * (64 ±0)` // Measured: `940 + m * (64 ±0)`
// Estimated: `4848 + m * (128 ±0)` // Estimated: `4848 + m * (128 ±0)`
// Minimum execution time: 21_328 nanoseconds. // Minimum execution time: 21_328 nanoseconds.
Weight::from_ref_time(22_066_229) Weight::from_parts(22_066_229, 0)
.saturating_add(Weight::from_proof_size(4848)) .saturating_add(Weight::from_parts(0, 4848))
// Standard Error: 239 // Standard Error: 239
.saturating_add(Weight::from_ref_time(40_102).saturating_mul(m.into())) .saturating_add(Weight::from_parts(40_102, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(128).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(m.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -189,16 +189,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `560 + m * (64 ±0) + p * (36 ±0)` // Measured: `560 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `5629 + m * (260 ±0) + p * (144 ±0)` // Estimated: `5629 + m * (260 ±0) + p * (144 ±0)`
// Minimum execution time: 26_232 nanoseconds. // Minimum execution time: 26_232 nanoseconds.
Weight::from_ref_time(27_666_505) Weight::from_parts(27_666_505, 0)
.saturating_add(Weight::from_proof_size(5629)) .saturating_add(Weight::from_parts(0, 5629))
// Standard Error: 832 // Standard Error: 832
.saturating_add(Weight::from_ref_time(10_187).saturating_mul(m.into())) .saturating_add(Weight::from_parts(10_187, 0).saturating_mul(m.into()))
// Standard Error: 811 // Standard Error: 811
.saturating_add(Weight::from_ref_time(139_912).saturating_mul(p.into())) .saturating_add(Weight::from_parts(139_912, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(260).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 260).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(144).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -219,19 +219,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `896 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `896 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `8900 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)` // Estimated: `8900 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)`
// Minimum execution time: 37_308 nanoseconds. // Minimum execution time: 37_308 nanoseconds.
Weight::from_ref_time(40_963_204) Weight::from_parts(40_963_204, 0)
.saturating_add(Weight::from_proof_size(8900)) .saturating_add(Weight::from_parts(0, 8900))
// Standard Error: 69 // Standard Error: 69
.saturating_add(Weight::from_ref_time(1_632).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_632, 0).saturating_mul(b.into()))
// Standard Error: 730 // Standard Error: 730
.saturating_add(Weight::from_ref_time(14_355).saturating_mul(m.into())) .saturating_add(Weight::from_parts(14_355, 0).saturating_mul(m.into()))
// Standard Error: 712 // Standard Error: 712
.saturating_add(Weight::from_ref_time(130_424).saturating_mul(p.into())) .saturating_add(Weight::from_parts(130_424, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(4).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(264).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 264).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(160).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 160).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -252,16 +252,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `580 + m * (64 ±0) + p * (36 ±0)` // Measured: `580 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `6765 + m * (325 ±0) + p * (180 ±0)` // Estimated: `6765 + m * (325 ±0) + p * (180 ±0)`
// Minimum execution time: 29_350 nanoseconds. // Minimum execution time: 29_350 nanoseconds.
Weight::from_ref_time(30_743_848) Weight::from_parts(30_743_848, 0)
.saturating_add(Weight::from_proof_size(6765)) .saturating_add(Weight::from_parts(0, 6765))
// Standard Error: 876 // Standard Error: 876
.saturating_add(Weight::from_ref_time(30_695).saturating_mul(m.into())) .saturating_add(Weight::from_parts(30_695, 0).saturating_mul(m.into()))
// Standard Error: 854 // Standard Error: 854
.saturating_add(Weight::from_ref_time(131_831).saturating_mul(p.into())) .saturating_add(Weight::from_parts(131_831, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(325).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 325).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -284,19 +284,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `916 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `916 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `10235 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)` // Estimated: `10235 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)`
// Minimum execution time: 43_292 nanoseconds. // Minimum execution time: 43_292 nanoseconds.
Weight::from_ref_time(43_554_895) Weight::from_parts(43_554_895, 0)
.saturating_add(Weight::from_proof_size(10235)) .saturating_add(Weight::from_parts(0, 10235))
// Standard Error: 62 // Standard Error: 62
.saturating_add(Weight::from_ref_time(1_824).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_824, 0).saturating_mul(b.into()))
// Standard Error: 661 // Standard Error: 661
.saturating_add(Weight::from_ref_time(16_285).saturating_mul(m.into())) .saturating_add(Weight::from_parts(16_285, 0).saturating_mul(m.into()))
// Standard Error: 644 // Standard Error: 644
.saturating_add(Weight::from_ref_time(133_173).saturating_mul(p.into())) .saturating_add(Weight::from_parts(133_173, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(5).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 5).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(330).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 330).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(200).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 200).saturating_mul(p.into()))
} }
/// Storage: Council Proposals (r:1 w:1) /// Storage: Council Proposals (r:1 w:1)
/// Proof Skipped: Council Proposals (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Proposals (max_values: Some(1), max_size: None, mode: Measured)
@@ -311,12 +311,12 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `325 + p * (32 ±0)` // Measured: `325 + p * (32 ±0)`
// Estimated: `1470 + p * (96 ±0)` // Estimated: `1470 + p * (96 ±0)`
// Minimum execution time: 14_588 nanoseconds. // Minimum execution time: 14_588 nanoseconds.
Weight::from_ref_time(16_453_268) Weight::from_parts(16_453_268, 0)
.saturating_add(Weight::from_proof_size(1470)) .saturating_add(Weight::from_parts(0, 1470))
// Standard Error: 438 // Standard Error: 438
.saturating_add(Weight::from_ref_time(107_110).saturating_mul(p.into())) .saturating_add(Weight::from_parts(107_110, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(96).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 96).saturating_mul(p.into()))
} }
} }
@@ -64,18 +64,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `0 + m * (3233 ±0) + p * (3223 ±0)` // Measured: `0 + m * (3233 ±0) + p * (3223 ±0)`
// Estimated: `16478 + m * (7809 ±16) + p * (10238 ±16)` // Estimated: `16478 + m * (7809 ±16) + p * (10238 ±16)`
// Minimum execution time: 17_598 nanoseconds. // Minimum execution time: 17_598 nanoseconds.
Weight::from_ref_time(17_945_000) Weight::from_parts(17_945_000, 0)
.saturating_add(Weight::from_proof_size(16478)) .saturating_add(Weight::from_parts(0, 16478))
// Standard Error: 47_017 // Standard Error: 47_017
.saturating_add(Weight::from_ref_time(5_222_125).saturating_mul(m.into())) .saturating_add(Weight::from_parts(5_222_125, 0).saturating_mul(m.into()))
// Standard Error: 47_017 // Standard Error: 47_017
.saturating_add(Weight::from_ref_time(8_124_374).saturating_mul(p.into())) .saturating_add(Weight::from_parts(8_124_374, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7809).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 7809).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(10238).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 10238).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -88,14 +88,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `207 + m * (32 ±0)` // Measured: `207 + m * (32 ±0)`
// Estimated: `703 + m * (32 ±0)` // Estimated: `703 + m * (32 ±0)`
// Minimum execution time: 16_201 nanoseconds. // Minimum execution time: 16_201 nanoseconds.
Weight::from_ref_time(15_118_138) Weight::from_parts(15_118_138, 0)
.saturating_add(Weight::from_proof_size(703)) .saturating_add(Weight::from_parts(0, 703))
// Standard Error: 19 // Standard Error: 19
.saturating_add(Weight::from_ref_time(1_744).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_744, 0).saturating_mul(b.into()))
// Standard Error: 202 // Standard Error: 202
.saturating_add(Weight::from_ref_time(15_267).saturating_mul(m.into())) .saturating_add(Weight::from_parts(15_267, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -110,14 +110,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `207 + m * (32 ±0)` // Measured: `207 + m * (32 ±0)`
// Estimated: `3386 + m * (64 ±0)` // Estimated: `3386 + m * (64 ±0)`
// Minimum execution time: 18_645 nanoseconds. // Minimum execution time: 18_645 nanoseconds.
Weight::from_ref_time(17_701_946) Weight::from_parts(17_701_946, 0)
.saturating_add(Weight::from_proof_size(3386)) .saturating_add(Weight::from_parts(0, 3386))
// Standard Error: 18 // Standard Error: 18
.saturating_add(Weight::from_ref_time(1_507).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_507, 0).saturating_mul(b.into()))
// Standard Error: 192 // Standard Error: 192
.saturating_add(Weight::from_ref_time(20_679).saturating_mul(m.into())) .saturating_add(Weight::from_parts(20_679, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(Weight::from_proof_size(64).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -140,18 +140,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `529 + m * (32 ±0) + p * (36 ±0)` // Measured: `529 + m * (32 ±0) + p * (36 ±0)`
// Estimated: `6220 + m * (165 ±0) + p * (180 ±0)` // Estimated: `6220 + m * (165 ±0) + p * (180 ±0)`
// Minimum execution time: 24_768 nanoseconds. // Minimum execution time: 24_768 nanoseconds.
Weight::from_ref_time(25_762_588) Weight::from_parts(25_762_588, 0)
.saturating_add(Weight::from_proof_size(6220)) .saturating_add(Weight::from_parts(0, 6220))
// Standard Error: 54 // Standard Error: 54
.saturating_add(Weight::from_ref_time(2_615).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_615, 0).saturating_mul(b.into()))
// Standard Error: 570 // Standard Error: 570
.saturating_add(Weight::from_ref_time(18_024).saturating_mul(m.into())) .saturating_add(Weight::from_parts(18_024, 0).saturating_mul(m.into()))
// Standard Error: 563 // Standard Error: 563
.saturating_add(Weight::from_ref_time(118_711).saturating_mul(p.into())) .saturating_add(Weight::from_parts(118_711, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(165).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 165).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -164,13 +164,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `979 + m * (64 ±0)` // Measured: `979 + m * (64 ±0)`
// Estimated: `4926 + m * (128 ±0)` // Estimated: `4926 + m * (128 ±0)`
// Minimum execution time: 22_202 nanoseconds. // Minimum execution time: 22_202 nanoseconds.
Weight::from_ref_time(22_927_853) Weight::from_parts(22_927_853, 0)
.saturating_add(Weight::from_proof_size(4926)) .saturating_add(Weight::from_parts(0, 4926))
// Standard Error: 263 // Standard Error: 263
.saturating_add(Weight::from_ref_time(39_561).saturating_mul(m.into())) .saturating_add(Weight::from_parts(39_561, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(128).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -189,16 +189,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `599 + m * (64 ±0) + p * (36 ±0)` // Measured: `599 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `5785 + m * (260 ±0) + p * (144 ±0)` // Estimated: `5785 + m * (260 ±0) + p * (144 ±0)`
// Minimum execution time: 27_288 nanoseconds. // Minimum execution time: 27_288 nanoseconds.
Weight::from_ref_time(28_966_982) Weight::from_parts(28_966_982, 0)
.saturating_add(Weight::from_proof_size(5785)) .saturating_add(Weight::from_parts(0, 5785))
// Standard Error: 837 // Standard Error: 837
.saturating_add(Weight::from_ref_time(25_731).saturating_mul(m.into())) .saturating_add(Weight::from_parts(25_731, 0).saturating_mul(m.into()))
// Standard Error: 816 // Standard Error: 816
.saturating_add(Weight::from_ref_time(130_049).saturating_mul(p.into())) .saturating_add(Weight::from_parts(130_049, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(260).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 260).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(144).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -219,19 +219,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `935 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `935 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `9056 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)` // Estimated: `9056 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)`
// Minimum execution time: 41_320 nanoseconds. // Minimum execution time: 41_320 nanoseconds.
Weight::from_ref_time(42_052_397) Weight::from_parts(42_052_397, 0)
.saturating_add(Weight::from_proof_size(9056)) .saturating_add(Weight::from_parts(0, 9056))
// Standard Error: 58 // Standard Error: 58
.saturating_add(Weight::from_ref_time(1_517).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_517, 0).saturating_mul(b.into()))
// Standard Error: 616 // Standard Error: 616
.saturating_add(Weight::from_ref_time(15_616).saturating_mul(m.into())) .saturating_add(Weight::from_parts(15_616, 0).saturating_mul(m.into()))
// Standard Error: 601 // Standard Error: 601
.saturating_add(Weight::from_ref_time(129_809).saturating_mul(p.into())) .saturating_add(Weight::from_parts(129_809, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(4).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(264).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 264).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(160).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 160).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -252,16 +252,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `619 + m * (64 ±0) + p * (36 ±0)` // Measured: `619 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `6960 + m * (325 ±0) + p * (180 ±0)` // Estimated: `6960 + m * (325 ±0) + p * (180 ±0)`
// Minimum execution time: 30_441 nanoseconds. // Minimum execution time: 30_441 nanoseconds.
Weight::from_ref_time(33_053_449) Weight::from_parts(33_053_449, 0)
.saturating_add(Weight::from_proof_size(6960)) .saturating_add(Weight::from_parts(0, 6960))
// Standard Error: 545 // Standard Error: 545
.saturating_add(Weight::from_ref_time(28_062).saturating_mul(m.into())) .saturating_add(Weight::from_parts(28_062, 0).saturating_mul(m.into()))
// Standard Error: 531 // Standard Error: 531
.saturating_add(Weight::from_ref_time(118_196).saturating_mul(p.into())) .saturating_add(Weight::from_parts(118_196, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(325).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 325).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -284,19 +284,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `955 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `955 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `10430 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)` // Estimated: `10430 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)`
// Minimum execution time: 44_117 nanoseconds. // Minimum execution time: 44_117 nanoseconds.
Weight::from_ref_time(44_764_424) Weight::from_parts(44_764_424, 0)
.saturating_add(Weight::from_proof_size(10430)) .saturating_add(Weight::from_parts(0, 10430))
// Standard Error: 58 // Standard Error: 58
.saturating_add(Weight::from_ref_time(1_714).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_714, 0).saturating_mul(b.into()))
// Standard Error: 622 // Standard Error: 622
.saturating_add(Weight::from_ref_time(17_011).saturating_mul(m.into())) .saturating_add(Weight::from_parts(17_011, 0).saturating_mul(m.into()))
// Standard Error: 607 // Standard Error: 607
.saturating_add(Weight::from_ref_time(132_627).saturating_mul(p.into())) .saturating_add(Weight::from_parts(132_627, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(5).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 5).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(330).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 330).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(200).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 200).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Proposals (r:1 w:1) /// Storage: TechnicalCommittee Proposals (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured)
@@ -311,12 +311,12 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `364 + p * (32 ±0)` // Measured: `364 + p * (32 ±0)`
// Estimated: `1587 + p * (96 ±0)` // Estimated: `1587 + p * (96 ±0)`
// Minimum execution time: 15_308 nanoseconds. // Minimum execution time: 15_308 nanoseconds.
Weight::from_ref_time(17_038_386) Weight::from_parts(17_038_386, 0)
.saturating_add(Weight::from_proof_size(1587)) .saturating_add(Weight::from_parts(0, 1587))
// Standard Error: 420 // Standard Error: 420
.saturating_add(Weight::from_ref_time(108_431).saturating_mul(p.into())) .saturating_add(Weight::from_parts(108_431, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(96).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 96).saturating_mul(p.into()))
} }
} }
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `13540` // Measured: `13540`
// Estimated: `81125` // Estimated: `81125`
// Minimum execution time: 110_244 nanoseconds. // Minimum execution time: 110_244 nanoseconds.
Weight::from_ref_time(112_779_000) Weight::from_parts(112_779_000, 0)
.saturating_add(Weight::from_proof_size(81125)) .saturating_add(Weight::from_parts(0, 81125))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -80,8 +80,8 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `14292` // Measured: `14292`
// Estimated: `122563` // Estimated: `122563`
// Minimum execution time: 168_802 nanoseconds. // Minimum execution time: 168_802 nanoseconds.
Weight::from_ref_time(172_963_000) Weight::from_parts(172_963_000, 0)
.saturating_add(Weight::from_proof_size(122563)) .saturating_add(Weight::from_parts(0, 122563))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -96,8 +96,8 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `14012` // Measured: `14012`
// Estimated: `116003` // Estimated: `116003`
// Minimum execution time: 149_473 nanoseconds. // Minimum execution time: 149_473 nanoseconds.
Weight::from_ref_time(152_584_000) Weight::from_parts(152_584_000, 0)
.saturating_add(Weight::from_proof_size(116003)) .saturating_add(Weight::from_parts(0, 116003))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -110,8 +110,8 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `13067` // Measured: `13067`
// Estimated: `33127` // Estimated: `33127`
// Minimum execution time: 59_104 nanoseconds. // Minimum execution time: 59_104 nanoseconds.
Weight::from_ref_time(59_959_000) Weight::from_parts(59_959_000, 0)
.saturating_add(Weight::from_proof_size(33127)) .saturating_add(Weight::from_parts(0, 33127))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -131,15 +131,15 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `29734 + r * (397 ±0)` // Measured: `29734 + r * (397 ±0)`
// Estimated: `148868 + r * (3411 ±0)` // Estimated: `148868 + r * (3411 ±0)`
// Minimum execution time: 50_204 nanoseconds. // Minimum execution time: 50_204 nanoseconds.
Weight::from_ref_time(1_560_629_085) Weight::from_parts(1_560_629_085, 0)
.saturating_add(Weight::from_proof_size(148868)) .saturating_add(Weight::from_parts(0, 148868))
// Standard Error: 135_758 // Standard Error: 135_758
.saturating_add(Weight::from_ref_time(37_491_165).saturating_mul(r.into())) .saturating_add(Weight::from_parts(37_491_165, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(3411).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 3411).saturating_mul(r.into()))
} }
/// Storage: ConvictionVoting VotingFor (r:2 w:2) /// Storage: ConvictionVoting VotingFor (r:2 w:2)
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen) /// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
@@ -153,15 +153,15 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `29650 + r * (397 ±0)` // Measured: `29650 + r * (397 ±0)`
// Estimated: `142308 + r * (3411 ±0)` // Estimated: `142308 + r * (3411 ±0)`
// Minimum execution time: 33_539 nanoseconds. // Minimum execution time: 33_539 nanoseconds.
Weight::from_ref_time(1_538_822_528) Weight::from_parts(1_538_822_528, 0)
.saturating_add(Weight::from_proof_size(142308)) .saturating_add(Weight::from_parts(0, 142308))
// Standard Error: 135_125 // Standard Error: 135_125
.saturating_add(Weight::from_ref_time(37_655_169).saturating_mul(r.into())) .saturating_add(Weight::from_parts(37_655_169, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(3411).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 3411).saturating_mul(r.into()))
} }
/// Storage: ConvictionVoting VotingFor (r:1 w:1) /// Storage: ConvictionVoting VotingFor (r:1 w:1)
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen) /// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
@@ -174,8 +174,8 @@ impl<T: frame_system::Config> pallet_conviction_voting::WeightInfo for WeightInf
// Measured: `12312` // Measured: `12312`
// Estimated: `36276` // Estimated: `36276`
// Minimum execution time: 67_359 nanoseconds. // Minimum execution time: 67_359 nanoseconds.
Weight::from_ref_time(69_826_000) Weight::from_parts(69_826_000, 0)
.saturating_add(Weight::from_proof_size(36276)) .saturating_add(Weight::from_parts(0, 36276))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4831` // Measured: `4831`
// Estimated: `23409` // Estimated: `23409`
// Minimum execution time: 34_876 nanoseconds. // Minimum execution time: 34_876 nanoseconds.
Weight::from_ref_time(35_375_000) Weight::from_parts(35_375_000, 0)
.saturating_add(Weight::from_proof_size(23409)) .saturating_add(Weight::from_parts(0, 23409))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3587` // Measured: `3587`
// Estimated: `5705` // Estimated: `5705`
// Minimum execution time: 31_982 nanoseconds. // Minimum execution time: 31_982 nanoseconds.
Weight::from_ref_time(32_412_000) Weight::from_parts(32_412_000, 0)
.saturating_add(Weight::from_proof_size(5705)) .saturating_add(Weight::from_parts(0, 5705))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -86,8 +86,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3532` // Measured: `3532`
// Estimated: `12720` // Estimated: `12720`
// Minimum execution time: 46_525 nanoseconds. // Minimum execution time: 46_525 nanoseconds.
Weight::from_ref_time(46_812_000) Weight::from_parts(46_812_000, 0)
.saturating_add(Weight::from_proof_size(12720)) .saturating_add(Weight::from_parts(0, 12720))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3554` // Measured: `3554`
// Estimated: `12720` // Estimated: `12720`
// Minimum execution time: 46_269 nanoseconds. // Minimum execution time: 46_269 nanoseconds.
Weight::from_ref_time(46_629_000) Weight::from_parts(46_629_000, 0)
.saturating_add(Weight::from_proof_size(12720)) .saturating_add(Weight::from_parts(0, 12720))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -118,8 +118,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `365` // Measured: `365`
// Estimated: `7712` // Estimated: `7712`
// Minimum execution time: 25_015 nanoseconds. // Minimum execution time: 25_015 nanoseconds.
Weight::from_ref_time(25_351_000) Weight::from_parts(25_351_000, 0)
.saturating_add(Weight::from_proof_size(7712)) .saturating_add(Weight::from_parts(0, 7712))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -142,8 +142,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `6003` // Measured: `6003`
// Estimated: `36392` // Estimated: `36392`
// Minimum execution time: 90_150 nanoseconds. // Minimum execution time: 90_150 nanoseconds.
Weight::from_ref_time(91_058_000) Weight::from_parts(91_058_000, 0)
.saturating_add(Weight::from_proof_size(36392)) .saturating_add(Weight::from_parts(0, 36392))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -156,8 +156,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3415` // Measured: `3415`
// Estimated: `6340` // Estimated: `6340`
// Minimum execution time: 12_616 nanoseconds. // Minimum execution time: 12_616 nanoseconds.
Weight::from_ref_time(12_812_000) Weight::from_parts(12_812_000, 0)
.saturating_add(Weight::from_proof_size(6340)) .saturating_add(Weight::from_parts(0, 6340))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -168,8 +168,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_172 nanoseconds. // Minimum execution time: 3_172 nanoseconds.
Weight::from_ref_time(3_295_000) Weight::from_parts(3_295_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy NextExternal (r:0 w:1) /// Storage: Democracy NextExternal (r:0 w:1)
@@ -179,8 +179,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_117 nanoseconds. // Minimum execution time: 3_117 nanoseconds.
Weight::from_ref_time(3_288_000) Weight::from_parts(3_288_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy NextExternal (r:1 w:1) /// Storage: Democracy NextExternal (r:1 w:1)
@@ -196,8 +196,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `3654` // Estimated: `3654`
// Minimum execution time: 26_675 nanoseconds. // Minimum execution time: 26_675 nanoseconds.
Weight::from_ref_time(27_369_000) Weight::from_parts(27_369_000, 0)
.saturating_add(Weight::from_proof_size(3654)) .saturating_add(Weight::from_parts(0, 3654))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -212,8 +212,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3518` // Measured: `3518`
// Estimated: `8868` // Estimated: `8868`
// Minimum execution time: 31_174 nanoseconds. // Minimum execution time: 31_174 nanoseconds.
Weight::from_ref_time(31_517_000) Weight::from_parts(31_517_000, 0)
.saturating_add(Weight::from_proof_size(8868)) .saturating_add(Weight::from_parts(0, 8868))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -230,8 +230,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `5882` // Measured: `5882`
// Estimated: `28033` // Estimated: `28033`
// Minimum execution time: 73_218 nanoseconds. // Minimum execution time: 73_218 nanoseconds.
Weight::from_ref_time(74_394_000) Weight::from_parts(74_394_000, 0)
.saturating_add(Weight::from_proof_size(28033)) .saturating_add(Weight::from_parts(0, 28033))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -244,8 +244,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `238` // Measured: `238`
// Estimated: `2528` // Estimated: `2528`
// Minimum execution time: 18_468 nanoseconds. // Minimum execution time: 18_468 nanoseconds.
Weight::from_ref_time(18_870_000) Weight::from_parts(18_870_000, 0)
.saturating_add(Weight::from_proof_size(2528)) .saturating_add(Weight::from_parts(0, 2528))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -261,14 +261,14 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `211 + r * (117 ±0)` // Measured: `211 + r * (117 ±0)`
// Estimated: `998 + r * (2676 ±0)` // Estimated: `998 + r * (2676 ±0)`
// Minimum execution time: 6_237 nanoseconds. // Minimum execution time: 6_237 nanoseconds.
Weight::from_ref_time(9_788_030) Weight::from_parts(9_788_030, 0)
.saturating_add(Weight::from_proof_size(998)) .saturating_add(Weight::from_parts(0, 998))
// Standard Error: 5_493 // Standard Error: 5_493
.saturating_add(Weight::from_ref_time(2_774_064).saturating_mul(r.into())) .saturating_add(Weight::from_parts(2_774_064, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy LowestUnbaked (r:1 w:1) /// Storage: Democracy LowestUnbaked (r:1 w:1)
/// Proof: Democracy LowestUnbaked (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Democracy LowestUnbaked (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -288,14 +288,14 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `211 + r * (117 ±0)` // Measured: `211 + r * (117 ±0)`
// Estimated: `19318 + r * (2676 ±0)` // Estimated: `19318 + r * (2676 ±0)`
// Minimum execution time: 9_370 nanoseconds. // Minimum execution time: 9_370 nanoseconds.
Weight::from_ref_time(12_551_319) Weight::from_parts(12_551_319, 0)
.saturating_add(Weight::from_proof_size(19318)) .saturating_add(Weight::from_parts(0, 19318))
// Standard Error: 5_735 // Standard Error: 5_735
.saturating_add(Weight::from_ref_time(2_771_452).saturating_mul(r.into())) .saturating_add(Weight::from_parts(2_771_452, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy VotingOf (r:3 w:3) /// Storage: Democracy VotingOf (r:3 w:3)
/// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen) /// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen)
@@ -309,15 +309,15 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `925 + r * (139 ±0)` // Measured: `925 + r * (139 ±0)`
// Estimated: `22584 + r * (2676 ±0)` // Estimated: `22584 + r * (2676 ±0)`
// Minimum execution time: 39_375 nanoseconds. // Minimum execution time: 39_375 nanoseconds.
Weight::from_ref_time(42_351_696) Weight::from_parts(42_351_696, 0)
.saturating_add(Weight::from_proof_size(22584)) .saturating_add(Weight::from_parts(0, 22584))
// Standard Error: 7_527 // Standard Error: 7_527
.saturating_add(Weight::from_ref_time(3_880_547).saturating_mul(r.into())) .saturating_add(Weight::from_parts(3_880_547, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy VotingOf (r:2 w:2) /// Storage: Democracy VotingOf (r:2 w:2)
/// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen) /// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen)
@@ -329,15 +329,15 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `524 + r * (139 ±0)` // Measured: `524 + r * (139 ±0)`
// Estimated: `12540 + r * (2676 ±0)` // Estimated: `12540 + r * (2676 ±0)`
// Minimum execution time: 20_672 nanoseconds. // Minimum execution time: 20_672 nanoseconds.
Weight::from_ref_time(22_405_117) Weight::from_parts(22_405_117, 0)
.saturating_add(Weight::from_proof_size(12540)) .saturating_add(Weight::from_parts(0, 12540))
// Standard Error: 7_623 // Standard Error: 7_623
.saturating_add(Weight::from_ref_time(3_830_380).saturating_mul(r.into())) .saturating_add(Weight::from_parts(3_830_380, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy PublicProps (r:0 w:1) /// Storage: Democracy PublicProps (r:0 w:1)
/// Proof: Democracy PublicProps (max_values: Some(1), max_size: Some(16702), added: 17197, mode: MaxEncodedLen) /// Proof: Democracy PublicProps (max_values: Some(1), max_size: Some(16702), added: 17197, mode: MaxEncodedLen)
@@ -346,8 +346,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_083 nanoseconds. // Minimum execution time: 3_083 nanoseconds.
Weight::from_ref_time(3_242_000) Weight::from_parts(3_242_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy VotingOf (r:1 w:1) /// Storage: Democracy VotingOf (r:1 w:1)
@@ -362,10 +362,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `594` // Measured: `594`
// Estimated: `12647` // Estimated: `12647`
// Minimum execution time: 20_374 nanoseconds. // Minimum execution time: 20_374 nanoseconds.
Weight::from_ref_time(25_944_613) Weight::from_parts(25_944_613, 0)
.saturating_add(Weight::from_proof_size(12647)) .saturating_add(Weight::from_parts(0, 12647))
// Standard Error: 1_258 // Standard Error: 1_258
.saturating_add(Weight::from_ref_time(19_696).saturating_mul(r.into())) .saturating_add(Weight::from_parts(19_696, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -381,10 +381,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `595 + r * (22 ±0)` // Measured: `595 + r * (22 ±0)`
// Estimated: `12647` // Estimated: `12647`
// Minimum execution time: 24_535 nanoseconds. // Minimum execution time: 24_535 nanoseconds.
Weight::from_ref_time(25_495_740) Weight::from_parts(25_495_740, 0)
.saturating_add(Weight::from_proof_size(12647)) .saturating_add(Weight::from_parts(0, 12647))
// Standard Error: 551 // Standard Error: 551
.saturating_add(Weight::from_ref_time(60_441).saturating_mul(r.into())) .saturating_add(Weight::from_parts(60_441, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -398,10 +398,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `758 + r * (26 ±0)` // Measured: `758 + r * (26 ±0)`
// Estimated: `8946` // Estimated: `8946`
// Minimum execution time: 14_979 nanoseconds. // Minimum execution time: 14_979 nanoseconds.
Weight::from_ref_time(17_266_413) Weight::from_parts(17_266_413, 0)
.saturating_add(Weight::from_proof_size(8946)) .saturating_add(Weight::from_parts(0, 8946))
// Standard Error: 1_973 // Standard Error: 1_973
.saturating_add(Weight::from_ref_time(87_619).saturating_mul(r.into())) .saturating_add(Weight::from_parts(87_619, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -415,10 +415,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `758 + r * (26 ±0)` // Measured: `758 + r * (26 ±0)`
// Estimated: `8946` // Estimated: `8946`
// Minimum execution time: 15_169 nanoseconds. // Minimum execution time: 15_169 nanoseconds.
Weight::from_ref_time(17_559_094) Weight::from_parts(17_559_094, 0)
.saturating_add(Weight::from_proof_size(8946)) .saturating_add(Weight::from_parts(0, 8946))
// Standard Error: 2_076 // Standard Error: 2_076
.saturating_add(Weight::from_ref_time(88_471).saturating_mul(r.into())) .saturating_add(Weight::from_parts(88_471, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -433,8 +433,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `323` // Measured: `323`
// Estimated: `3193` // Estimated: `3193`
// Minimum execution time: 17_984 nanoseconds. // Minimum execution time: 17_984 nanoseconds.
Weight::from_ref_time(18_599_000) Weight::from_parts(18_599_000, 0)
.saturating_add(Weight::from_proof_size(3193)) .saturating_add(Weight::from_parts(0, 3193))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -447,8 +447,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `3155` // Estimated: `3155`
// Minimum execution time: 16_277 nanoseconds. // Minimum execution time: 16_277 nanoseconds.
Weight::from_ref_time(16_581_000) Weight::from_parts(16_581_000, 0)
.saturating_add(Weight::from_proof_size(3155)) .saturating_add(Weight::from_parts(0, 3155))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -463,8 +463,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4886` // Measured: `4886`
// Estimated: `19763` // Estimated: `19763`
// Minimum execution time: 33_325 nanoseconds. // Minimum execution time: 33_325 nanoseconds.
Weight::from_ref_time(33_908_000) Weight::from_parts(33_908_000, 0)
.saturating_add(Weight::from_proof_size(19763)) .saturating_add(Weight::from_parts(0, 19763))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -477,8 +477,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4820` // Measured: `4820`
// Estimated: `19725` // Estimated: `19725`
// Minimum execution time: 30_899 nanoseconds. // Minimum execution time: 30_899 nanoseconds.
Weight::from_ref_time(31_309_000) Weight::from_parts(31_309_000, 0)
.saturating_add(Weight::from_proof_size(19725)) .saturating_add(Weight::from_parts(0, 19725))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -491,8 +491,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 14_007 nanoseconds. // Minimum execution time: 14_007 nanoseconds.
Weight::from_ref_time(14_342_000) Weight::from_parts(14_342_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -505,8 +505,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `269` // Measured: `269`
// Estimated: `5204` // Estimated: `5204`
// Minimum execution time: 17_978 nanoseconds. // Minimum execution time: 17_978 nanoseconds.
Weight::from_ref_time(18_262_000) Weight::from_parts(18_262_000, 0)
.saturating_add(Weight::from_proof_size(5204)) .saturating_add(Weight::from_parts(0, 5204))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `1027` // Measured: `1027`
// Estimated: `7016` // Estimated: `7016`
// Minimum execution time: 21_449 nanoseconds. // Minimum execution time: 21_449 nanoseconds.
Weight::from_ref_time(22_362_000) Weight::from_parts(22_362_000, 0)
.saturating_add(Weight::from_proof_size(7016)) .saturating_add(Weight::from_parts(0, 7016))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
} }
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0) /// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
@@ -79,8 +79,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `148` // Measured: `148`
// Estimated: `1286` // Estimated: `1286`
// Minimum execution time: 12_547 nanoseconds. // Minimum execution time: 12_547 nanoseconds.
Weight::from_ref_time(13_335_000) Weight::from_parts(13_335_000, 0)
.saturating_add(Weight::from_proof_size(1286)) .saturating_add(Weight::from_parts(0, 1286))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -93,8 +93,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `148` // Measured: `148`
// Estimated: `1286` // Estimated: `1286`
// Minimum execution time: 14_056 nanoseconds. // Minimum execution time: 14_056 nanoseconds.
Weight::from_ref_time(14_550_000) Weight::from_parts(14_550_000, 0)
.saturating_add(Weight::from_proof_size(1286)) .saturating_add(Weight::from_parts(0, 1286))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -107,8 +107,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206` // Measured: `206`
// Estimated: `2809` // Estimated: `2809`
// Minimum execution time: 24_655 nanoseconds. // Minimum execution time: 24_655 nanoseconds.
Weight::from_ref_time(25_009_000) Weight::from_parts(25_009_000, 0)
.saturating_add(Weight::from_proof_size(2809)) .saturating_add(Weight::from_parts(0, 2809))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206` // Measured: `206`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 16_964 nanoseconds. // Minimum execution time: 16_964 nanoseconds.
Weight::from_ref_time(17_298_000) Weight::from_parts(17_298_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -137,10 +137,10 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 671_539 nanoseconds. // Minimum execution time: 671_539 nanoseconds.
Weight::from_ref_time(690_128_000) Weight::from_parts(690_128_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_403 // Standard Error: 3_403
.saturating_add(Weight::from_ref_time(390_939).saturating_mul(v.into())) .saturating_add(Weight::from_parts(390_939, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1) /// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
@@ -170,14 +170,14 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `931 + a * (1152 ±0) + d * (47 ±0)` // Measured: `931 + a * (1152 ±0) + d * (47 ±0)`
// Estimated: `14232 + a * (10368 ±0) + d * (432 ±0)` // Estimated: `14232 + a * (10368 ±0) + d * (432 ±0)`
// Minimum execution time: 365_109 nanoseconds. // Minimum execution time: 365_109 nanoseconds.
Weight::from_ref_time(378_817_000) Weight::from_parts(378_817_000, 0)
.saturating_add(Weight::from_proof_size(14232)) .saturating_add(Weight::from_parts(0, 14232))
// Standard Error: 9_758 // Standard Error: 9_758
.saturating_add(Weight::from_ref_time(577_521).saturating_mul(a.into())) .saturating_add(Weight::from_parts(577_521, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(9)) .saturating_add(T::DbWeight::get().writes(9))
.saturating_add(Weight::from_proof_size(10368).saturating_mul(a.into())) .saturating_add(Weight::from_parts(0, 10368).saturating_mul(a.into()))
.saturating_add(Weight::from_proof_size(432).saturating_mul(d.into())) .saturating_add(Weight::from_parts(0, 432).saturating_mul(d.into()))
} }
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0) /// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
@@ -196,8 +196,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `1270` // Measured: `1270`
// Estimated: `8841` // Estimated: `8841`
// Minimum execution time: 44_760 nanoseconds. // Minimum execution time: 44_760 nanoseconds.
Weight::from_ref_time(45_281_000) Weight::from_parts(45_281_000, 0)
.saturating_add(Weight::from_proof_size(8841)) .saturating_add(Weight::from_parts(0, 8841))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -224,16 +224,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `285 + v * (809 ±0) + t * (32 ±0)` // Measured: `285 + v * (809 ±0) + t * (32 ±0)`
// Estimated: `5460 + v * (5663 ±0) + t * (224 ±0)` // Estimated: `5460 + v * (5663 ±0) + t * (224 ±0)`
// Minimum execution time: 7_221_400 nanoseconds. // Minimum execution time: 7_221_400 nanoseconds.
Weight::from_ref_time(7_322_097_000) Weight::from_parts(7_322_097_000, 0)
.saturating_add(Weight::from_proof_size(5460)) .saturating_add(Weight::from_parts(0, 5460))
// Standard Error: 27_267 // Standard Error: 27_267
.saturating_add(Weight::from_ref_time(41_662).saturating_mul(v.into())) .saturating_add(Weight::from_parts(41_662, 0).saturating_mul(v.into()))
// Standard Error: 80_803 // Standard Error: 80_803
.saturating_add(Weight::from_ref_time(6_916_813).saturating_mul(a.into())) .saturating_add(Weight::from_parts(6_916_813, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(5663).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 5663).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(224).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 224).saturating_mul(t.into()))
} }
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0) /// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
@@ -252,16 +252,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `260 + v * (809 ±0) + t * (32 ±0)` // Measured: `260 + v * (809 ±0) + t * (32 ±0)`
// Estimated: `3020 + v * (3236 ±0) + t * (128 ±0)` // Estimated: `3020 + v * (3236 ±0) + t * (128 ±0)`
// Minimum execution time: 6_056_695 nanoseconds. // Minimum execution time: 6_056_695 nanoseconds.
Weight::from_ref_time(126_880_199) Weight::from_parts(126_880_199, 0)
.saturating_add(Weight::from_proof_size(3020)) .saturating_add(Weight::from_parts(0, 3020))
// Standard Error: 17_213 // Standard Error: 17_213
.saturating_add(Weight::from_ref_time(877_536).saturating_mul(v.into())) .saturating_add(Weight::from_parts(877_536, 0).saturating_mul(v.into()))
// Standard Error: 57_299 // Standard Error: 57_299
.saturating_add(Weight::from_ref_time(8_302_939).saturating_mul(a.into())) .saturating_add(Weight::from_parts(8_302_939, 0).saturating_mul(a.into()))
// Standard Error: 85_881 // Standard Error: 85_881
.saturating_add(Weight::from_ref_time(1_570_237).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_570_237, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(Weight::from_proof_size(3236).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 3236).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(128).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(t.into()))
} }
} }
@@ -61,13 +61,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `499 + v * (80 ±0)` // Measured: `499 + v * (80 ±0)`
// Estimated: `9726 + v * (320 ±0)` // Estimated: `9726 + v * (320 ±0)`
// Minimum execution time: 26_970 nanoseconds. // Minimum execution time: 26_970 nanoseconds.
Weight::from_ref_time(27_998_740) Weight::from_parts(27_998_740, 0)
.saturating_add(Weight::from_proof_size(9726)) .saturating_add(Weight::from_parts(0, 9726))
// Standard Error: 5_062 // Standard Error: 5_062
.saturating_add(Weight::from_ref_time(138_034).saturating_mul(v.into())) .saturating_add(Weight::from_parts(138_034, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:0) /// Storage: PhragmenElection Candidates (r:1 w:0)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -85,13 +85,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `467 + v * (80 ±0)` // Measured: `467 + v * (80 ±0)`
// Estimated: `9598 + v * (320 ±0)` // Estimated: `9598 + v * (320 ±0)`
// Minimum execution time: 37_220 nanoseconds. // Minimum execution time: 37_220 nanoseconds.
Weight::from_ref_time(37_898_566) Weight::from_parts(37_898_566, 0)
.saturating_add(Weight::from_proof_size(9598)) .saturating_add(Weight::from_parts(0, 9598))
// Standard Error: 6_174 // Standard Error: 6_174
.saturating_add(Weight::from_ref_time(130_031).saturating_mul(v.into())) .saturating_add(Weight::from_parts(130_031, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:0) /// Storage: PhragmenElection Candidates (r:1 w:0)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -109,13 +109,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `499 + v * (80 ±0)` // Measured: `499 + v * (80 ±0)`
// Estimated: `9726 + v * (320 ±0)` // Estimated: `9726 + v * (320 ±0)`
// Minimum execution time: 36_984 nanoseconds. // Minimum execution time: 36_984 nanoseconds.
Weight::from_ref_time(37_727_688) Weight::from_parts(37_727_688, 0)
.saturating_add(Weight::from_proof_size(9726)) .saturating_add(Weight::from_parts(0, 9726))
// Standard Error: 5_281 // Standard Error: 5_281
.saturating_add(Weight::from_ref_time(155_470).saturating_mul(v.into())) .saturating_add(Weight::from_parts(155_470, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Voting (r:1 w:1) /// Storage: PhragmenElection Voting (r:1 w:1)
/// Proof Skipped: PhragmenElection Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Voting (max_values: None, max_size: None, mode: Measured)
@@ -126,8 +126,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `989` // Measured: `989`
// Estimated: `7238` // Estimated: `7238`
// Minimum execution time: 33_417 nanoseconds. // Minimum execution time: 33_417 nanoseconds.
Weight::from_ref_time(33_890_000) Weight::from_parts(33_890_000, 0)
.saturating_add(Weight::from_proof_size(7238)) .saturating_add(Weight::from_parts(0, 7238))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -143,13 +143,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `2839 + c * (48 ±0)` // Measured: `2839 + c * (48 ±0)`
// Estimated: `9996 + c * (144 ±0)` // Estimated: `9996 + c * (144 ±0)`
// Minimum execution time: 31_809 nanoseconds. // Minimum execution time: 31_809 nanoseconds.
Weight::from_ref_time(24_804_007) Weight::from_parts(24_804_007, 0)
.saturating_add(Weight::from_proof_size(9996)) .saturating_add(Weight::from_parts(0, 9996))
// Standard Error: 896 // Standard Error: 896
.saturating_add(Weight::from_ref_time(80_259).saturating_mul(c.into())) .saturating_add(Weight::from_parts(80_259, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(144).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(c.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:1) /// Storage: PhragmenElection Candidates (r:1 w:1)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -159,13 +159,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `348 + c * (48 ±0)` // Measured: `348 + c * (48 ±0)`
// Estimated: `830 + c * (48 ±0)` // Estimated: `830 + c * (48 ±0)`
// Minimum execution time: 24_845 nanoseconds. // Minimum execution time: 24_845 nanoseconds.
Weight::from_ref_time(17_884_636) Weight::from_parts(17_884_636, 0)
.saturating_add(Weight::from_proof_size(830)) .saturating_add(Weight::from_parts(0, 830))
// Standard Error: 887 // Standard Error: 887
.saturating_add(Weight::from_ref_time(58_586).saturating_mul(c.into())) .saturating_add(Weight::from_parts(58_586, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(48).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 48).saturating_mul(c.into()))
} }
/// Storage: PhragmenElection Members (r:1 w:1) /// Storage: PhragmenElection Members (r:1 w:1)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -182,8 +182,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `3113` // Measured: `3113`
// Estimated: `17545` // Estimated: `17545`
// Minimum execution time: 43_134 nanoseconds. // Minimum execution time: 43_134 nanoseconds.
Weight::from_ref_time(44_525_000) Weight::from_parts(44_525_000, 0)
.saturating_add(Weight::from_proof_size(17545)) .saturating_add(Weight::from_parts(0, 17545))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -194,8 +194,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `1776` // Measured: `1776`
// Estimated: `2271` // Estimated: `2271`
// Minimum execution time: 27_323 nanoseconds. // Minimum execution time: 27_323 nanoseconds.
Weight::from_ref_time(27_861_000) Weight::from_parts(27_861_000, 0)
.saturating_add(Weight::from_proof_size(2271)) .saturating_add(Weight::from_parts(0, 2271))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -206,8 +206,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_000_000_000 nanoseconds. // Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000) Weight::from_parts(2_000_000_000_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: PhragmenElection Members (r:1 w:1) /// Storage: PhragmenElection Members (r:1 w:1)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -226,8 +226,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `3113` // Measured: `3113`
// Estimated: `20148` // Estimated: `20148`
// Minimum execution time: 58_918 nanoseconds. // Minimum execution time: 58_918 nanoseconds.
Weight::from_ref_time(59_322_000) Weight::from_parts(59_322_000, 0)
.saturating_add(Weight::from_proof_size(20148)) .saturating_add(Weight::from_parts(0, 20148))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -250,14 +250,14 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `35989 + v * (872 ±0)` // Measured: `35989 + v * (872 ±0)`
// Estimated: `149016 + v * (12340 ±0)` // Estimated: `149016 + v * (12340 ±0)`
// Minimum execution time: 338_562_744 nanoseconds. // Minimum execution time: 338_562_744 nanoseconds.
Weight::from_ref_time(339_541_438_000) Weight::from_parts(339_541_438_000, 0)
.saturating_add(Weight::from_proof_size(149016)) .saturating_add(Weight::from_parts(0, 149016))
// Standard Error: 289_739 // Standard Error: 289_739
.saturating_add(Weight::from_ref_time(41_932_708).saturating_mul(v.into())) .saturating_add(Weight::from_parts(41_932_708, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
.saturating_add(Weight::from_proof_size(12340).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 12340).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:1) /// Storage: PhragmenElection Candidates (r:1 w:1)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -285,19 +285,19 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `0 + v * (639 ±0) + e * (28 ±0)` // Measured: `0 + v * (639 ±0) + e * (28 ±0)`
// Estimated: `5334911 + v * (5714 ±4) + e * (123 ±0) + c * (2560 ±0)` // Estimated: `5334911 + v * (5714 ±4) + e * (123 ±0) + c * (2560 ±0)`
// Minimum execution time: 34_066_705 nanoseconds. // Minimum execution time: 34_066_705 nanoseconds.
Weight::from_ref_time(34_200_781_000) Weight::from_parts(34_200_781_000, 0)
.saturating_add(Weight::from_proof_size(5334911)) .saturating_add(Weight::from_parts(0, 5334911))
// Standard Error: 509_361 // Standard Error: 509_361
.saturating_add(Weight::from_ref_time(43_123_929).saturating_mul(v.into())) .saturating_add(Weight::from_parts(43_123_929, 0).saturating_mul(v.into()))
// Standard Error: 32_687 // Standard Error: 32_687
.saturating_add(Weight::from_ref_time(2_179_162).saturating_mul(e.into())) .saturating_add(Weight::from_parts(2_179_162, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(265)) .saturating_add(T::DbWeight::get().reads(265))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(5714).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 5714).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(123).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 123).saturating_mul(e.into()))
.saturating_add(Weight::from_proof_size(2560).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 2560).saturating_mul(c.into()))
} }
} }
@@ -79,15 +79,15 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1348 + b * (375 ±0)` // Measured: `1348 + b * (375 ±0)`
// Estimated: `8805 + b * (17962 ±0)` // Estimated: `8805 + b * (17962 ±0)`
// Minimum execution time: 77_064 nanoseconds. // Minimum execution time: 77_064 nanoseconds.
Weight::from_ref_time(35_939_138) Weight::from_parts(35_939_138, 0)
.saturating_add(Weight::from_proof_size(8805)) .saturating_add(Weight::from_parts(0, 8805))
// Standard Error: 51_777 // Standard Error: 51_777
.saturating_add(Weight::from_ref_time(41_379_142).saturating_mul(b.into())) .saturating_add(Weight::from_parts(41_379_142, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_proof_size(17962).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 17962).saturating_mul(b.into()))
} }
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0) /// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -110,17 +110,17 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1516 + v * (18519 ±0) + b * (48 ±0)` // Measured: `1516 + v * (18519 ±0) + b * (48 ±0)`
// Estimated: `11390 + v * (39515 ±0) + b * (98 ±0)` // Estimated: `11390 + v * (39515 ±0) + b * (98 ±0)`
// Minimum execution time: 1_753_651 nanoseconds. // Minimum execution time: 1_753_651 nanoseconds.
Weight::from_ref_time(1_768_190_000) Weight::from_parts(1_768_190_000, 0)
.saturating_add(Weight::from_proof_size(11390)) .saturating_add(Weight::from_parts(0, 11390))
// Standard Error: 17_419_764 // Standard Error: 17_419_764
.saturating_add(Weight::from_ref_time(557_480_020).saturating_mul(v.into())) .saturating_add(Weight::from_parts(557_480_020, 0).saturating_mul(v.into()))
// Standard Error: 69_698_458 // Standard Error: 69_698_458
.saturating_add(Weight::from_ref_time(2_177_348_847).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_177_348_847, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(39515).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 39515).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(98).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 98).saturating_mul(b.into()))
} }
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0) /// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `2026` // Measured: `2026`
// Estimated: `29594` // Estimated: `29594`
// Minimum execution time: 111_029 nanoseconds. // Minimum execution time: 111_029 nanoseconds.
Weight::from_ref_time(113_755_000) Weight::from_parts(113_755_000, 0)
.saturating_add(Weight::from_proof_size(29594)) .saturating_add(Weight::from_parts(0, 29594))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(9)) .saturating_add(T::DbWeight::get().writes(9))
} }
@@ -175,8 +175,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1220` // Measured: `1220`
// Estimated: `10781` // Estimated: `10781`
// Minimum execution time: 41_214 nanoseconds. // Minimum execution time: 41_214 nanoseconds.
Weight::from_ref_time(41_497_000) Weight::from_parts(41_497_000, 0)
.saturating_add(Weight::from_proof_size(10781)) .saturating_add(Weight::from_parts(0, 10781))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -187,8 +187,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_443 nanoseconds. // Minimum execution time: 2_443 nanoseconds.
Weight::from_ref_time(2_586_000) Weight::from_parts(2_586_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `64 + r * (57 ±0)` // Measured: `64 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 11_208 nanoseconds. // Minimum execution time: 11_208 nanoseconds.
Weight::from_ref_time(12_047_997) Weight::from_parts(12_047_997, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_920 // Standard Error: 1_920
.saturating_add(Weight::from_ref_time(101_894).saturating_mul(r.into())) .saturating_add(Weight::from_parts(101_894, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -69,12 +69,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `474 + r * (5 ±0)` // Measured: `474 + r * (5 ±0)`
// Estimated: `10013` // Estimated: `10013`
// Minimum execution time: 28_542 nanoseconds. // Minimum execution time: 28_542 nanoseconds.
Weight::from_ref_time(28_963_355) Weight::from_parts(28_963_355, 0)
.saturating_add(Weight::from_proof_size(10013)) .saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 3_727 // Standard Error: 3_727
.saturating_add(Weight::from_ref_time(27_685).saturating_mul(r.into())) .saturating_add(Weight::from_parts(27_685, 0).saturating_mul(r.into()))
// Standard Error: 727 // Standard Error: 727
.saturating_add(Weight::from_ref_time(443_762).saturating_mul(x.into())) .saturating_add(Weight::from_parts(443_762, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -90,15 +90,15 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `101` // Measured: `101`
// Estimated: `15746 + s * (2589 ±0)` // Estimated: `15746 + s * (2589 ±0)`
// Minimum execution time: 8_887 nanoseconds. // Minimum execution time: 8_887 nanoseconds.
Weight::from_ref_time(22_611_966) Weight::from_parts(22_611_966, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 4_429 // Standard Error: 4_429
.saturating_add(Weight::from_ref_time(2_875_857).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_875_857, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(2589).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into()))
} }
/// Storage: Identity IdentityOf (r:1 w:0) /// Storage: Identity IdentityOf (r:1 w:0)
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen) /// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
@@ -112,10 +112,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `226 + p * (32 ±0)` // Measured: `226 + p * (32 ±0)`
// Estimated: `15746` // Estimated: `15746`
// Minimum execution time: 8_636 nanoseconds. // Minimum execution time: 8_636 nanoseconds.
Weight::from_ref_time(21_370_550) Weight::from_parts(21_370_550, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 3_629 // Standard Error: 3_629
.saturating_add(Weight::from_ref_time(1_141_607).saturating_mul(p.into())) .saturating_add(Weight::from_parts(1_141_607, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
@@ -134,14 +134,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `533 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Measured: `533 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `15746` // Estimated: `15746`
// Minimum execution time: 48_957 nanoseconds. // Minimum execution time: 48_957 nanoseconds.
Weight::from_ref_time(26_306_252) Weight::from_parts(26_306_252, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 8_739 // Standard Error: 8_739
.saturating_add(Weight::from_ref_time(93_355).saturating_mul(r.into())) .saturating_add(Weight::from_parts(93_355, 0).saturating_mul(r.into()))
// Standard Error: 1_706 // Standard Error: 1_706
.saturating_add(Weight::from_ref_time(1_112_902).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_112_902, 0).saturating_mul(s.into()))
// Standard Error: 1_706 // Standard Error: 1_706
.saturating_add(Weight::from_ref_time(237_971).saturating_mul(x.into())) .saturating_add(Weight::from_parts(237_971, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -157,12 +157,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `431 + r * (57 ±0) + x * (66 ±0)` // Measured: `431 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649` // Estimated: `11649`
// Minimum execution time: 29_466 nanoseconds. // Minimum execution time: 29_466 nanoseconds.
Weight::from_ref_time(28_311_470) Weight::from_parts(28_311_470, 0)
.saturating_add(Weight::from_proof_size(11649)) .saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 4_744 // Standard Error: 4_744
.saturating_add(Weight::from_ref_time(105_338).saturating_mul(r.into())) .saturating_add(Weight::from_parts(105_338, 0).saturating_mul(r.into()))
// Standard Error: 925 // Standard Error: 925
.saturating_add(Weight::from_ref_time(469_280).saturating_mul(x.into())) .saturating_add(Weight::from_parts(469_280, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -175,12 +175,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `430 + x * (66 ±0)` // Measured: `430 + x * (66 ±0)`
// Estimated: `10013` // Estimated: `10013`
// Minimum execution time: 25_996 nanoseconds. // Minimum execution time: 25_996 nanoseconds.
Weight::from_ref_time(26_141_469) Weight::from_parts(26_141_469, 0)
.saturating_add(Weight::from_proof_size(10013)) .saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 4_115 // Standard Error: 4_115
.saturating_add(Weight::from_ref_time(61_929).saturating_mul(r.into())) .saturating_add(Weight::from_parts(61_929, 0).saturating_mul(r.into()))
// Standard Error: 802 // Standard Error: 802
.saturating_add(Weight::from_ref_time(466_025).saturating_mul(x.into())) .saturating_add(Weight::from_parts(466_025, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 6_761 nanoseconds. // Minimum execution time: 6_761 nanoseconds.
Weight::from_ref_time(7_438_431) Weight::from_parts(7_438_431, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_286 // Standard Error: 1_286
.saturating_add(Weight::from_ref_time(96_779).saturating_mul(r.into())) .saturating_add(Weight::from_parts(96_779, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -207,10 +207,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 7_065 nanoseconds. // Minimum execution time: 7_065 nanoseconds.
Weight::from_ref_time(7_761_081) Weight::from_parts(7_761_081, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_405 // Standard Error: 1_405
.saturating_add(Weight::from_ref_time(89_580).saturating_mul(r.into())) .saturating_add(Weight::from_parts(89_580, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -222,10 +222,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 7_029 nanoseconds. // Minimum execution time: 7_029 nanoseconds.
Weight::from_ref_time(7_489_478) Weight::from_parts(7_489_478, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_273 // Standard Error: 1_273
.saturating_add(Weight::from_ref_time(87_142).saturating_mul(r.into())) .saturating_add(Weight::from_parts(87_142, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -240,12 +240,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `509 + r * (57 ±0) + x * (66 ±0)` // Measured: `509 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649` // Estimated: `11649`
// Minimum execution time: 22_672 nanoseconds. // Minimum execution time: 22_672 nanoseconds.
Weight::from_ref_time(21_800_147) Weight::from_parts(21_800_147, 0)
.saturating_add(Weight::from_proof_size(11649)) .saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 5_387 // Standard Error: 5_387
.saturating_add(Weight::from_ref_time(103_911).saturating_mul(r.into())) .saturating_add(Weight::from_parts(103_911, 0).saturating_mul(r.into()))
// Standard Error: 996 // Standard Error: 996
.saturating_add(Weight::from_ref_time(775_383).saturating_mul(x.into())) .saturating_add(Weight::from_parts(775_383, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -265,14 +265,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `772 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Measured: `772 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `18349` // Estimated: `18349`
// Minimum execution time: 62_398 nanoseconds. // Minimum execution time: 62_398 nanoseconds.
Weight::from_ref_time(41_403_376) Weight::from_parts(41_403_376, 0)
.saturating_add(Weight::from_proof_size(18349)) .saturating_add(Weight::from_parts(0, 18349))
// Standard Error: 18_828 // Standard Error: 18_828
.saturating_add(Weight::from_ref_time(63_353).saturating_mul(r.into())) .saturating_add(Weight::from_parts(63_353, 0).saturating_mul(r.into()))
// Standard Error: 3_676 // Standard Error: 3_676
.saturating_add(Weight::from_ref_time(1_132_017).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_132_017, 0).saturating_mul(s.into()))
// Standard Error: 3_676 // Standard Error: 3_676
.saturating_add(Weight::from_ref_time(228_527).saturating_mul(x.into())) .saturating_add(Weight::from_parts(228_527, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -289,10 +289,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `507 + s * (36 ±0)` // Measured: `507 + s * (36 ±0)`
// Estimated: `18335` // Estimated: `18335`
// Minimum execution time: 25_876 nanoseconds. // Minimum execution time: 25_876 nanoseconds.
Weight::from_ref_time(30_818_769) Weight::from_parts(30_818_769, 0)
.saturating_add(Weight::from_proof_size(18335)) .saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 1_458 // Standard Error: 1_458
.saturating_add(Weight::from_ref_time(63_175).saturating_mul(s.into())) .saturating_add(Weight::from_parts(63_175, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -306,10 +306,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `623 + s * (3 ±0)` // Measured: `623 + s * (3 ±0)`
// Estimated: `12602` // Estimated: `12602`
// Minimum execution time: 12_517 nanoseconds. // Minimum execution time: 12_517 nanoseconds.
Weight::from_ref_time(14_411_360) Weight::from_parts(14_411_360, 0)
.saturating_add(Weight::from_proof_size(12602)) .saturating_add(Weight::from_parts(0, 12602))
// Standard Error: 615 // Standard Error: 615
.saturating_add(Weight::from_ref_time(17_345).saturating_mul(s.into())) .saturating_add(Weight::from_parts(17_345, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -325,10 +325,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `702 + s * (35 ±0)` // Measured: `702 + s * (35 ±0)`
// Estimated: `18335` // Estimated: `18335`
// Minimum execution time: 29_382 nanoseconds. // Minimum execution time: 29_382 nanoseconds.
Weight::from_ref_time(35_419_886) Weight::from_parts(35_419_886, 0)
.saturating_add(Weight::from_proof_size(18335)) .saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 1_530 // Standard Error: 1_530
.saturating_add(Weight::from_ref_time(49_937).saturating_mul(s.into())) .saturating_add(Weight::from_parts(49_937, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -342,10 +342,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `628 + s * (37 ±0)` // Measured: `628 + s * (37 ±0)`
// Estimated: `8322` // Estimated: `8322`
// Minimum execution time: 18_595 nanoseconds. // Minimum execution time: 18_595 nanoseconds.
Weight::from_ref_time(21_047_083) Weight::from_parts(21_047_083, 0)
.saturating_add(Weight::from_proof_size(8322)) .saturating_add(Weight::from_parts(0, 8322))
// Standard Error: 986 // Standard Error: 986
.saturating_add(Weight::from_ref_time(56_196).saturating_mul(s.into())) .saturating_add(Weight::from_parts(56_196, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -62,15 +62,15 @@ impl<T: frame_system::Config> pallet_im_online::WeightInfo for WeightInfo<T> {
// Measured: `425 + k * (32 ±0)` // Measured: `425 + k * (32 ±0)`
// Estimated: `10345844 + k * (64 ±0) + e * (25 ±0)` // Estimated: `10345844 + k * (64 ±0) + e * (25 ±0)`
// Minimum execution time: 91_845 nanoseconds. // Minimum execution time: 91_845 nanoseconds.
Weight::from_ref_time(72_883_222) Weight::from_parts(72_883_222, 0)
.saturating_add(Weight::from_proof_size(10345844)) .saturating_add(Weight::from_parts(0, 10345844))
// Standard Error: 391 // Standard Error: 391
.saturating_add(Weight::from_ref_time(24_923).saturating_mul(k.into())) .saturating_add(Weight::from_parts(24_923, 0).saturating_mul(k.into()))
// Standard Error: 3_945 // Standard Error: 3_945
.saturating_add(Weight::from_ref_time(391_176).saturating_mul(e.into())) .saturating_add(Weight::from_parts(391_176, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(64).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(k.into()))
.saturating_add(Weight::from_proof_size(25).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 25).saturating_mul(e.into()))
} }
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `142` // Measured: `142`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 19_772 nanoseconds. // Minimum execution time: 19_772 nanoseconds.
Weight::from_ref_time(20_141_000) Weight::from_parts(20_141_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405` // Measured: `405`
// Estimated: `5147` // Estimated: `5147`
// Minimum execution time: 26_307 nanoseconds. // Minimum execution time: 26_307 nanoseconds.
Weight::from_ref_time(26_715_000) Weight::from_parts(26_715_000, 0)
.saturating_add(Weight::from_proof_size(5147)) .saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270` // Measured: `270`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 21_317 nanoseconds. // Minimum execution time: 21_317 nanoseconds.
Weight::from_ref_time(21_752_000) Weight::from_parts(21_752_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -92,8 +92,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405` // Measured: `405`
// Estimated: `5147` // Estimated: `5147`
// Minimum execution time: 22_949 nanoseconds. // Minimum execution time: 22_949 nanoseconds.
Weight::from_ref_time(23_602_000) Weight::from_parts(23_602_000, 0)
.saturating_add(Weight::from_proof_size(5147)) .saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270` // Measured: `270`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 23_291 nanoseconds. // Minimum execution time: 23_291 nanoseconds.
Weight::from_ref_time(23_680_000) Weight::from_parts(23_680_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -59,13 +59,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `272 + m * (64 ±0)` // Measured: `272 + m * (64 ±0)`
// Estimated: `5005 + m * (192 ±0)` // Estimated: `5005 + m * (192 ±0)`
// Minimum execution time: 15_868 nanoseconds. // Minimum execution time: 15_868 nanoseconds.
Weight::from_ref_time(16_735_956) Weight::from_parts(16_735_956, 0)
.saturating_add(Weight::from_proof_size(5005)) .saturating_add(Weight::from_parts(0, 5005))
// Standard Error: 405 // Standard Error: 405
.saturating_add(Weight::from_ref_time(34_427).saturating_mul(m.into())) .saturating_add(Weight::from_parts(34_427, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -83,13 +83,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `376 + m * (64 ±0)` // Measured: `376 + m * (64 ±0)`
// Estimated: `5844 + m * (192 ±0)` // Estimated: `5844 + m * (192 ±0)`
// Minimum execution time: 18_310 nanoseconds. // Minimum execution time: 18_310 nanoseconds.
Weight::from_ref_time(20_244_850) Weight::from_parts(20_244_850, 0)
.saturating_add(Weight::from_proof_size(5844)) .saturating_add(Weight::from_parts(0, 5844))
// Standard Error: 1_013 // Standard Error: 1_013
.saturating_add(Weight::from_ref_time(24_485).saturating_mul(m.into())) .saturating_add(Weight::from_parts(24_485, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -107,13 +107,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `376 + m * (64 ±0)` // Measured: `376 + m * (64 ±0)`
// Estimated: `5844 + m * (192 ±0)` // Estimated: `5844 + m * (192 ±0)`
// Minimum execution time: 18_288 nanoseconds. // Minimum execution time: 18_288 nanoseconds.
Weight::from_ref_time(19_678_526) Weight::from_parts(19_678_526, 0)
.saturating_add(Weight::from_proof_size(5844)) .saturating_add(Weight::from_parts(0, 5844))
// Standard Error: 638 // Standard Error: 638
.saturating_add(Weight::from_ref_time(46_969).saturating_mul(m.into())) .saturating_add(Weight::from_parts(46_969, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -131,13 +131,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `376 + m * (64 ±0)` // Measured: `376 + m * (64 ±0)`
// Estimated: `5844 + m * (192 ±0)` // Estimated: `5844 + m * (192 ±0)`
// Minimum execution time: 18_134 nanoseconds. // Minimum execution time: 18_134 nanoseconds.
Weight::from_ref_time(19_888_809) Weight::from_parts(19_888_809, 0)
.saturating_add(Weight::from_proof_size(5844)) .saturating_add(Weight::from_parts(0, 5844))
// Standard Error: 941 // Standard Error: 941
.saturating_add(Weight::from_ref_time(159_905).saturating_mul(m.into())) .saturating_add(Weight::from_parts(159_905, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -155,13 +155,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `376 + m * (64 ±0)` // Measured: `376 + m * (64 ±0)`
// Estimated: `5844 + m * (192 ±0)` // Estimated: `5844 + m * (192 ±0)`
// Minimum execution time: 19_561 nanoseconds. // Minimum execution time: 19_561 nanoseconds.
Weight::from_ref_time(21_279_630) Weight::from_parts(21_279_630, 0)
.saturating_add(Weight::from_proof_size(5844)) .saturating_add(Weight::from_parts(0, 5844))
// Standard Error: 1_831 // Standard Error: 1_831
.saturating_add(Weight::from_ref_time(40_904).saturating_mul(m.into())) .saturating_add(Weight::from_parts(40_904, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:0) /// Storage: TechnicalMembership Members (r:1 w:0)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -175,13 +175,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `64 + m * (32 ±0)` // Measured: `64 + m * (32 ±0)`
// Estimated: `3761 + m * (32 ±0)` // Estimated: `3761 + m * (32 ±0)`
// Minimum execution time: 6_834 nanoseconds. // Minimum execution time: 6_834 nanoseconds.
Weight::from_ref_time(7_209_545) Weight::from_parts(7_209_545, 0)
.saturating_add(Weight::from_proof_size(3761)) .saturating_add(Weight::from_parts(0, 3761))
// Standard Error: 141 // Standard Error: 141
.saturating_add(Weight::from_ref_time(11_608).saturating_mul(m.into())) .saturating_add(Weight::from_parts(11_608, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Prime (r:0 w:1) /// Storage: TechnicalMembership Prime (r:0 w:1)
/// Proof: TechnicalMembership Prime (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) /// Proof: TechnicalMembership Prime (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen)
@@ -193,10 +193,10 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_026 nanoseconds. // Minimum execution time: 3_026 nanoseconds.
Weight::from_ref_time(3_222_361) Weight::from_parts(3_222_361, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 76 // Standard Error: 76
.saturating_add(Weight::from_ref_time(409).saturating_mul(m.into())) .saturating_add(Weight::from_parts(409, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
} }
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 11_812 nanoseconds. // Minimum execution time: 11_812 nanoseconds.
Weight::from_ref_time(12_396_153) Weight::from_parts(12_396_153, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(494).saturating_mul(z.into())) .saturating_add(Weight::from_parts(494, 0).saturating_mul(z.into()))
} }
/// Storage: Multisig Multisigs (r:1 w:1) /// Storage: Multisig Multisigs (r:1 w:1)
/// Proof: Multisig Multisigs (max_values: None, max_size: Some(3346), added: 5821, mode: MaxEncodedLen) /// Proof: Multisig Multisigs (max_values: None, max_size: Some(3346), added: 5821, mode: MaxEncodedLen)
@@ -65,12 +65,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `352 + s * (2 ±0)` // Measured: `352 + s * (2 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 36_403 nanoseconds. // Minimum execution time: 36_403 nanoseconds.
Weight::from_ref_time(31_104_250) Weight::from_parts(31_104_250, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 608 // Standard Error: 608
.saturating_add(Weight::from_ref_time(65_369).saturating_mul(s.into())) .saturating_add(Weight::from_parts(65_369, 0).saturating_mul(s.into()))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(1_470).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_470, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -83,12 +83,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `351` // Measured: `351`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 26_859 nanoseconds. // Minimum execution time: 26_859 nanoseconds.
Weight::from_ref_time(20_829_361) Weight::from_parts(20_829_361, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 424 // Standard Error: 424
.saturating_add(Weight::from_ref_time(66_072).saturating_mul(s.into())) .saturating_add(Weight::from_parts(66_072, 0).saturating_mul(s.into()))
// Standard Error: 4 // Standard Error: 4
.saturating_add(Weight::from_ref_time(1_507).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_507, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -103,12 +103,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `489 + s * (33 ±0)` // Measured: `489 + s * (33 ±0)`
// Estimated: `8424` // Estimated: `8424`
// Minimum execution time: 44_285 nanoseconds. // Minimum execution time: 44_285 nanoseconds.
Weight::from_ref_time(33_858_965) Weight::from_parts(33_858_965, 0)
.saturating_add(Weight::from_proof_size(8424)) .saturating_add(Weight::from_parts(0, 8424))
// Standard Error: 1_025 // Standard Error: 1_025
.saturating_add(Weight::from_ref_time(106_136).saturating_mul(s.into())) .saturating_add(Weight::from_parts(106_136, 0).saturating_mul(s.into()))
// Standard Error: 10 // Standard Error: 10
.saturating_add(Weight::from_ref_time(1_572).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_572, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -120,10 +120,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `359 + s * (2 ±0)` // Measured: `359 + s * (2 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 27_007 nanoseconds. // Minimum execution time: 27_007 nanoseconds.
Weight::from_ref_time(28_799_460) Weight::from_parts(28_799_460, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 727 // Standard Error: 727
.saturating_add(Weight::from_ref_time(73_421).saturating_mul(s.into())) .saturating_add(Weight::from_parts(73_421, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -135,10 +135,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `351` // Measured: `351`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 18_213 nanoseconds. // Minimum execution time: 18_213 nanoseconds.
Weight::from_ref_time(19_335_417) Weight::from_parts(19_335_417, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 547 // Standard Error: 547
.saturating_add(Weight::from_ref_time(70_081).saturating_mul(s.into())) .saturating_add(Weight::from_parts(70_081, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -150,10 +150,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `555 + s * (1 ±0)` // Measured: `555 + s * (1 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 28_536 nanoseconds. // Minimum execution time: 28_536 nanoseconds.
Weight::from_ref_time(30_528_975) Weight::from_parts(30_528_975, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 1_817 // Standard Error: 1_817
.saturating_add(Weight::from_ref_time(100_832).saturating_mul(s.into())) .saturating_add(Weight::from_parts(100_832, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -57,10 +57,10 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `10279 + l * (48 ±0)` // Measured: `10279 + l * (48 ±0)`
// Estimated: `64718` // Estimated: `64718`
// Minimum execution time: 30_301 nanoseconds. // Minimum execution time: 30_301 nanoseconds.
Weight::from_ref_time(33_466_240) Weight::from_parts(33_466_240, 0)
.saturating_add(Weight::from_proof_size(64718)) .saturating_add(Weight::from_parts(0, 64718))
// Standard Error: 738 // Standard Error: 738
.saturating_add(Weight::from_ref_time(72_743).saturating_mul(l.into())) .saturating_add(Weight::from_parts(72_743, 0).saturating_mul(l.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -75,8 +75,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `58281` // Measured: `58281`
// Estimated: `64718` // Estimated: `64718`
// Minimum execution time: 107_161 nanoseconds. // Minimum execution time: 107_161 nanoseconds.
Weight::from_ref_time(108_832_000) Weight::from_parts(108_832_000, 0)
.saturating_add(Weight::from_proof_size(64718)) .saturating_add(Weight::from_parts(0, 64718))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -92,10 +92,10 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `10279 + l * (48 ±0)` // Measured: `10279 + l * (48 ±0)`
// Estimated: `64718` // Estimated: `64718`
// Minimum execution time: 38_181 nanoseconds. // Minimum execution time: 38_181 nanoseconds.
Weight::from_ref_time(34_136_859) Weight::from_parts(34_136_859, 0)
.saturating_add(Weight::from_proof_size(64718)) .saturating_add(Weight::from_parts(0, 64718))
// Standard Error: 722 // Standard Error: 722
.saturating_add(Weight::from_ref_time(59_626).saturating_mul(l.into())) .saturating_add(Weight::from_parts(59_626, 0).saturating_mul(l.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `256` // Measured: `256`
// Estimated: `3138` // Estimated: `3138`
// Minimum execution time: 34_258 nanoseconds. // Minimum execution time: 34_258 nanoseconds.
Weight::from_ref_time(34_506_000) Weight::from_parts(34_506_000, 0)
.saturating_add(Weight::from_proof_size(3138)) .saturating_add(Weight::from_parts(0, 3138))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -126,8 +126,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `457` // Measured: `457`
// Estimated: `9418` // Estimated: `9418`
// Minimum execution time: 49_523 nanoseconds. // Minimum execution time: 49_523 nanoseconds.
Weight::from_ref_time(49_848_000) Weight::from_parts(49_848_000, 0)
.saturating_add(Weight::from_proof_size(9418)) .saturating_add(Weight::from_parts(0, 9418))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -146,8 +146,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `698` // Measured: `698`
// Estimated: `8792` // Estimated: `8792`
// Minimum execution time: 65_591 nanoseconds. // Minimum execution time: 65_591 nanoseconds.
Weight::from_ref_time(66_211_000) Weight::from_parts(66_211_000, 0)
.saturating_add(Weight::from_proof_size(8792)) .saturating_add(Weight::from_parts(0, 8792))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -168,8 +168,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `760` // Measured: `760`
// Estimated: `12516` // Estimated: `12516`
// Minimum execution time: 74_274 nanoseconds. // Minimum execution time: 74_274 nanoseconds.
Weight::from_ref_time(75_181_000) Weight::from_parts(75_181_000, 0)
.saturating_add(Weight::from_proof_size(12516)) .saturating_add(Weight::from_parts(0, 12516))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -190,8 +190,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `539` // Measured: `539`
// Estimated: `12516` // Estimated: `12516`
// Minimum execution time: 68_837 nanoseconds. // Minimum execution time: 68_837 nanoseconds.
Weight::from_ref_time(69_316_000) Weight::from_parts(69_316_000, 0)
.saturating_add(Weight::from_proof_size(12516)) .saturating_add(Weight::from_parts(0, 12516))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -206,8 +206,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `10689` // Measured: `10689`
// Estimated: `13635` // Estimated: `13635`
// Minimum execution time: 24_779 nanoseconds. // Minimum execution time: 24_779 nanoseconds.
Weight::from_ref_time(25_172_000) Weight::from_parts(25_172_000, 0)
.saturating_add(Weight::from_proof_size(13635)) .saturating_add(Weight::from_parts(0, 13635))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -218,8 +218,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `76` // Measured: `76`
// Estimated: `50497` // Estimated: `50497`
// Minimum execution time: 4_104 nanoseconds. // Minimum execution time: 4_104 nanoseconds.
Weight::from_ref_time(4_252_000) Weight::from_parts(4_252_000, 0)
.saturating_add(Weight::from_proof_size(50497)) .saturating_add(Weight::from_parts(0, 50497))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -230,8 +230,8 @@ impl<T: frame_system::Config> pallet_nis::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_710 nanoseconds. // Minimum execution time: 6_710 nanoseconds.
Weight::from_ref_time(6_907_000) Weight::from_parts(6_907_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3501` // Measured: `3501`
// Estimated: `38468` // Estimated: `38468`
// Minimum execution time: 155_259 nanoseconds. // Minimum execution time: 155_259 nanoseconds.
Weight::from_ref_time(159_392_000) Weight::from_parts(159_392_000, 0)
.saturating_add(Weight::from_proof_size(38468)) .saturating_add(Weight::from_parts(0, 38468))
.saturating_add(T::DbWeight::get().reads(17)) .saturating_add(T::DbWeight::get().reads(17))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3543` // Measured: `3543`
// Estimated: `39063` // Estimated: `39063`
// Minimum execution time: 150_628 nanoseconds. // Minimum execution time: 150_628 nanoseconds.
Weight::from_ref_time(152_414_000) Weight::from_parts(152_414_000, 0)
.saturating_add(Weight::from_proof_size(39063)) .saturating_add(Weight::from_parts(0, 39063))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3389` // Measured: `3389`
// Estimated: `38950` // Estimated: `38950`
// Minimum execution time: 163_983 nanoseconds. // Minimum execution time: 163_983 nanoseconds.
Weight::from_ref_time(165_428_000) Weight::from_parts(165_428_000, 0)
.saturating_add(Weight::from_proof_size(38950)) .saturating_add(Weight::from_parts(0, 38950))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -154,8 +154,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1254` // Measured: `1254`
// Estimated: `13485` // Estimated: `13485`
// Minimum execution time: 59_520 nanoseconds. // Minimum execution time: 59_520 nanoseconds.
Weight::from_ref_time(60_666_000) Weight::from_parts(60_666_000, 0)
.saturating_add(Weight::from_proof_size(13485)) .saturating_add(Weight::from_parts(0, 13485))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3779` // Measured: `3779`
// Estimated: `44930` // Estimated: `44930`
// Minimum execution time: 154_659 nanoseconds. // Minimum execution time: 154_659 nanoseconds.
Weight::from_ref_time(156_090_000) Weight::from_parts(156_090_000, 0)
.saturating_add(Weight::from_proof_size(44930)) .saturating_add(Weight::from_parts(0, 44930))
.saturating_add(T::DbWeight::get().reads(18)) .saturating_add(T::DbWeight::get().reads(18))
.saturating_add(T::DbWeight::get().writes(13)) .saturating_add(T::DbWeight::get().writes(13))
} }
@@ -213,10 +213,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1700` // Measured: `1700`
// Estimated: `13025` // Estimated: `13025`
// Minimum execution time: 52_836 nanoseconds. // Minimum execution time: 52_836 nanoseconds.
Weight::from_ref_time(54_086_254) Weight::from_parts(54_086_254, 0)
.saturating_add(Weight::from_proof_size(13025)) .saturating_add(Weight::from_parts(0, 13025))
// Standard Error: 753 // Standard Error: 753
.saturating_add(Weight::from_ref_time(8_103).saturating_mul(s.into())) .saturating_add(Weight::from_parts(8_103, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -246,10 +246,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2224` // Measured: `2224`
// Estimated: `22991` // Estimated: `22991`
// Minimum execution time: 102_419 nanoseconds. // Minimum execution time: 102_419 nanoseconds.
Weight::from_ref_time(104_332_875) Weight::from_parts(104_332_875, 0)
.saturating_add(Weight::from_proof_size(22991)) .saturating_add(Weight::from_parts(0, 22991))
// Standard Error: 1_933 // Standard Error: 1_933
.saturating_add(Weight::from_ref_time(15_901).saturating_mul(s.into())) .saturating_add(Weight::from_parts(15_901, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -301,8 +301,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2614` // Measured: `2614`
// Estimated: `46287` // Estimated: `46287`
// Minimum execution time: 162_308 nanoseconds. // Minimum execution time: 162_308 nanoseconds.
Weight::from_ref_time(165_347_893) Weight::from_parts(165_347_893, 0)
.saturating_add(Weight::from_proof_size(46287)) .saturating_add(Weight::from_parts(0, 46287))
.saturating_add(T::DbWeight::get().reads(20)) .saturating_add(T::DbWeight::get().reads(20))
.saturating_add(T::DbWeight::get().writes(18)) .saturating_add(T::DbWeight::get().writes(18))
} }
@@ -353,8 +353,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1254` // Measured: `1254`
// Estimated: `32002` // Estimated: `32002`
// Minimum execution time: 144_295 nanoseconds. // Minimum execution time: 144_295 nanoseconds.
Weight::from_ref_time(145_923_000) Weight::from_parts(145_923_000, 0)
.saturating_add(Weight::from_proof_size(32002)) .saturating_add(Weight::from_parts(0, 32002))
.saturating_add(T::DbWeight::get().reads(21)) .saturating_add(T::DbWeight::get().reads(21))
.saturating_add(T::DbWeight::get().writes(15)) .saturating_add(T::DbWeight::get().writes(15))
} }
@@ -388,14 +388,14 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1834` // Measured: `1834`
// Estimated: `22254 + n * (2520 ±0)` // Estimated: `22254 + n * (2520 ±0)`
// Minimum execution time: 66_817 nanoseconds. // Minimum execution time: 66_817 nanoseconds.
Weight::from_ref_time(67_646_764) Weight::from_parts(67_646_764, 0)
.saturating_add(Weight::from_proof_size(22254)) .saturating_add(Weight::from_parts(0, 22254))
// Standard Error: 12_768 // Standard Error: 12_768
.saturating_add(Weight::from_ref_time(1_325_294).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_325_294, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
} }
/// Storage: NominationPools BondedPools (r:1 w:1) /// Storage: NominationPools BondedPools (r:1 w:1)
/// Proof: NominationPools BondedPools (max_values: None, max_size: Some(164), added: 2639, mode: MaxEncodedLen) /// Proof: NominationPools BondedPools (max_values: None, max_size: Some(164), added: 2639, mode: MaxEncodedLen)
@@ -408,8 +408,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1423` // Measured: `1423`
// Estimated: `8752` // Estimated: `8752`
// Minimum execution time: 35_795 nanoseconds. // Minimum execution time: 35_795 nanoseconds.
Weight::from_ref_time(36_450_000) Weight::from_parts(36_450_000, 0)
.saturating_add(Weight::from_proof_size(8752)) .saturating_add(Weight::from_parts(0, 8752))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -425,10 +425,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `559` // Measured: `559`
// Estimated: `5883` // Estimated: `5883`
// Minimum execution time: 14_066 nanoseconds. // Minimum execution time: 14_066 nanoseconds.
Weight::from_ref_time(14_523_246) Weight::from_parts(14_523_246, 0)
.saturating_add(Weight::from_proof_size(5883)) .saturating_add(Weight::from_parts(0, 5883))
// Standard Error: 114 // Standard Error: 114
.saturating_add(Weight::from_ref_time(1_692).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_692, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -447,8 +447,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_088 nanoseconds. // Minimum execution time: 5_088 nanoseconds.
Weight::from_ref_time(5_337_000) Weight::from_parts(5_337_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
/// Storage: NominationPools BondedPools (r:1 w:1) /// Storage: NominationPools BondedPools (r:1 w:1)
@@ -458,8 +458,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `559` // Measured: `559`
// Estimated: `2639` // Estimated: `2639`
// Minimum execution time: 19_312 nanoseconds. // Minimum execution time: 19_312 nanoseconds.
Weight::from_ref_time(19_483_000) Weight::from_parts(19_483_000, 0)
.saturating_add(Weight::from_proof_size(2639)) .saturating_add(Weight::from_parts(0, 2639))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -486,8 +486,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2061` // Measured: `2061`
// Estimated: `20745` // Estimated: `20745`
// Minimum execution time: 65_721 nanoseconds. // Minimum execution time: 65_721 nanoseconds.
Weight::from_ref_time(66_514_000) Weight::from_parts(66_514_000, 0)
.saturating_add(Weight::from_proof_size(20745)) .saturating_add(Weight::from_parts(0, 20745))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -500,8 +500,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `542` // Measured: `542`
// Estimated: `5708` // Estimated: `5708`
// Minimum execution time: 14_637 nanoseconds. // Minimum execution time: 14_637 nanoseconds.
Weight::from_ref_time(15_053_000) Weight::from_parts(15_053_000, 0)
.saturating_add(Weight::from_proof_size(5708)) .saturating_add(Weight::from_parts(0, 5708))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -55,10 +55,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `175` // Measured: `175`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 24_429 nanoseconds. // Minimum execution time: 24_429 nanoseconds.
Weight::from_ref_time(24_682_000) Weight::from_parts(24_682_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_296).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_296, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -72,10 +72,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 15_628 nanoseconds. // Minimum execution time: 15_628 nanoseconds.
Weight::from_ref_time(15_810_000) Weight::from_parts(15_810_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(2_307).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_307, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 14_422 nanoseconds. // Minimum execution time: 14_422 nanoseconds.
Weight::from_ref_time(14_639_000) Weight::from_parts(14_639_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 3 // Standard Error: 3
.saturating_add(Weight::from_ref_time(2_310).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_310, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `353` // Measured: `353`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 32_172 nanoseconds. // Minimum execution time: 32_172 nanoseconds.
Weight::from_ref_time(33_400_000) Weight::from_parts(33_400_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 20_366 nanoseconds. // Minimum execution time: 20_366 nanoseconds.
Weight::from_ref_time(21_337_000) Weight::from_parts(21_337_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -131,8 +131,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `220` // Measured: `220`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 18_373 nanoseconds. // Minimum execution time: 18_373 nanoseconds.
Weight::from_ref_time(19_178_000) Weight::from_parts(19_178_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -143,8 +143,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 10_863 nanoseconds. // Minimum execution time: 10_863 nanoseconds.
Weight::from_ref_time(11_528_000) Weight::from_parts(11_528_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `42` // Measured: `42`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 12_532 nanoseconds. // Minimum execution time: 12_532 nanoseconds.
Weight::from_ref_time(13_374_000) Weight::from_parts(13_374_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -167,8 +167,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 7_507 nanoseconds. // Minimum execution time: 7_507 nanoseconds.
Weight::from_ref_time(7_822_000) Weight::from_parts(7_822_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -181,8 +181,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 18_373 nanoseconds. // Minimum execution time: 18_373 nanoseconds.
Weight::from_ref_time(19_743_000) Weight::from_parts(19_743_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -193,8 +193,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 7_479 nanoseconds. // Minimum execution time: 7_479 nanoseconds.
Weight::from_ref_time(7_718_000) Weight::from_parts(7_718_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -205,8 +205,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 7_490 nanoseconds. // Minimum execution time: 7_490 nanoseconds.
Weight::from_ref_time(7_696_000) Weight::from_parts(7_696_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 14_615 nanoseconds. // Minimum execution time: 14_615 nanoseconds.
Weight::from_ref_time(15_386_698) Weight::from_parts(15_386_698, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_787 // Standard Error: 1_787
.saturating_add(Weight::from_ref_time(43_011).saturating_mul(p.into())) .saturating_add(Weight::from_parts(43_011, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
} }
/// Storage: Proxy Proxies (r:1 w:0) /// Storage: Proxy Proxies (r:1 w:0)
@@ -72,12 +72,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `650 + a * (68 ±0) + p * (37 ±0)` // Measured: `650 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027` // Estimated: `11027`
// Minimum execution time: 36_035 nanoseconds. // Minimum execution time: 36_035 nanoseconds.
Weight::from_ref_time(36_959_447) Weight::from_parts(36_959_447, 0)
.saturating_add(Weight::from_proof_size(11027)) .saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 1_990 // Standard Error: 1_990
.saturating_add(Weight::from_ref_time(139_528).saturating_mul(a.into())) .saturating_add(Weight::from_parts(139_528, 0).saturating_mul(a.into()))
// Standard Error: 2_057 // Standard Error: 2_057
.saturating_add(Weight::from_ref_time(21_985).saturating_mul(p.into())) .saturating_add(Weight::from_parts(21_985, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -92,10 +92,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)` // Measured: `533 + a * (68 ±0)`
// Estimated: `7311` // Estimated: `7311`
// Minimum execution time: 20_524 nanoseconds. // Minimum execution time: 20_524 nanoseconds.
Weight::from_ref_time(22_062_026) Weight::from_parts(22_062_026, 0)
.saturating_add(Weight::from_proof_size(7311)) .saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_358 // Standard Error: 1_358
.saturating_add(Weight::from_ref_time(140_509).saturating_mul(a.into())) .saturating_add(Weight::from_parts(140_509, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -110,10 +110,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)` // Measured: `533 + a * (68 ±0)`
// Estimated: `7311` // Estimated: `7311`
// Minimum execution time: 20_653 nanoseconds. // Minimum execution time: 20_653 nanoseconds.
Weight::from_ref_time(21_980_503) Weight::from_parts(21_980_503, 0)
.saturating_add(Weight::from_proof_size(7311)) .saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_413 // Standard Error: 1_413
.saturating_add(Weight::from_ref_time(140_088).saturating_mul(a.into())) .saturating_add(Weight::from_parts(140_088, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -130,12 +130,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `582 + a * (68 ±0) + p * (37 ±0)` // Measured: `582 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027` // Estimated: `11027`
// Minimum execution time: 28_971 nanoseconds. // Minimum execution time: 28_971 nanoseconds.
Weight::from_ref_time(33_226_962) Weight::from_parts(33_226_962, 0)
.saturating_add(Weight::from_proof_size(11027)) .saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 3_142 // Standard Error: 3_142
.saturating_add(Weight::from_ref_time(144_218).saturating_mul(a.into())) .saturating_add(Weight::from_parts(144_218, 0).saturating_mul(a.into()))
// Standard Error: 3_247 // Standard Error: 3_247
.saturating_add(Weight::from_ref_time(20_427).saturating_mul(p.into())) .saturating_add(Weight::from_parts(20_427, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -147,10 +147,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 22_068 nanoseconds. // Minimum execution time: 22_068 nanoseconds.
Weight::from_ref_time(22_996_882) Weight::from_parts(22_996_882, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_701 // Standard Error: 1_701
.saturating_add(Weight::from_ref_time(53_958).saturating_mul(p.into())) .saturating_add(Weight::from_parts(53_958, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -162,10 +162,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 21_470 nanoseconds. // Minimum execution time: 21_470 nanoseconds.
Weight::from_ref_time(22_582_951) Weight::from_parts(22_582_951, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_831 // Standard Error: 1_831
.saturating_add(Weight::from_ref_time(66_607).saturating_mul(p.into())) .saturating_add(Weight::from_parts(66_607, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -177,10 +177,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 17_398 nanoseconds. // Minimum execution time: 17_398 nanoseconds.
Weight::from_ref_time(18_475_576) Weight::from_parts(18_475_576, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_719 // Standard Error: 1_719
.saturating_add(Weight::from_ref_time(13_465).saturating_mul(p.into())) .saturating_add(Weight::from_parts(13_465, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `239` // Measured: `239`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 23_766 nanoseconds. // Minimum execution time: 23_766 nanoseconds.
Weight::from_ref_time(24_670_874) Weight::from_parts(24_670_874, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 3_266 // Standard Error: 3_266
.saturating_add(Weight::from_ref_time(11_835).saturating_mul(p.into())) .saturating_add(Weight::from_parts(11_835, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -207,10 +207,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `296 + p * (37 ±0)` // Measured: `296 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 18_402 nanoseconds. // Minimum execution time: 18_402 nanoseconds.
Weight::from_ref_time(19_432_290) Weight::from_parts(19_432_290, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 2_064 // Standard Error: 2_064
.saturating_add(Weight::from_ref_time(27_007).saturating_mul(p.into())) .saturating_add(Weight::from_parts(27_007, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `76` // Measured: `76`
// Estimated: `5006` // Estimated: `5006`
// Minimum execution time: 16_268 nanoseconds. // Minimum execution time: 16_268 nanoseconds.
Weight::from_ref_time(16_687_000) Weight::from_parts(16_687_000, 0)
.saturating_add(Weight::from_proof_size(5006)) .saturating_add(Weight::from_parts(0, 5006))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -77,15 +77,15 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `550 + r * (281 ±0)` // Measured: `550 + r * (281 ±0)`
// Estimated: `10064 + r * (7547 ±0)` // Estimated: `10064 + r * (7547 ±0)`
// Minimum execution time: 26_704 nanoseconds. // Minimum execution time: 26_704 nanoseconds.
Weight::from_ref_time(31_276_838) Weight::from_parts(31_276_838, 0)
.saturating_add(Weight::from_proof_size(10064)) .saturating_add(Weight::from_parts(0, 10064))
// Standard Error: 27_858 // Standard Error: 27_858
.saturating_add(Weight::from_ref_time(11_495_748).saturating_mul(r.into())) .saturating_add(Weight::from_parts(11_495_748, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(7547).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 7547).saturating_mul(r.into()))
} }
/// Storage: FellowshipCollective Members (r:1 w:1) /// Storage: FellowshipCollective Members (r:1 w:1)
/// Proof: FellowshipCollective Members (max_values: None, max_size: Some(42), added: 2517, mode: MaxEncodedLen) /// Proof: FellowshipCollective Members (max_values: None, max_size: Some(42), added: 2517, mode: MaxEncodedLen)
@@ -101,10 +101,10 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `248 + r * (17 ±0)` // Measured: `248 + r * (17 ±0)`
// Estimated: `5006` // Estimated: `5006`
// Minimum execution time: 18_832 nanoseconds. // Minimum execution time: 18_832 nanoseconds.
Weight::from_ref_time(19_732_179) Weight::from_parts(19_732_179, 0)
.saturating_add(Weight::from_proof_size(5006)) .saturating_add(Weight::from_parts(0, 5006))
// Standard Error: 4_824 // Standard Error: 4_824
.saturating_add(Weight::from_ref_time(306_796).saturating_mul(r.into())) .saturating_add(Weight::from_parts(306_796, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -122,10 +122,10 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `566 + r * (72 ±0)` // Measured: `566 + r * (72 ±0)`
// Estimated: `10064` // Estimated: `10064`
// Minimum execution time: 26_654 nanoseconds. // Minimum execution time: 26_654 nanoseconds.
Weight::from_ref_time(31_282_870) Weight::from_parts(31_282_870, 0)
.saturating_add(Weight::from_proof_size(10064)) .saturating_add(Weight::from_parts(0, 10064))
// Standard Error: 27_881 // Standard Error: 27_881
.saturating_add(Weight::from_ref_time(756_040).saturating_mul(r.into())) .saturating_add(Weight::from_parts(756_040, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -142,8 +142,8 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `704` // Measured: `704`
// Estimated: `91308` // Estimated: `91308`
// Minimum execution time: 49_853 nanoseconds. // Minimum execution time: 49_853 nanoseconds.
Weight::from_ref_time(50_469_000) Weight::from_parts(50_469_000, 0)
.saturating_add(Weight::from_proof_size(91308)) .saturating_add(Weight::from_parts(0, 91308))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -159,13 +159,13 @@ impl<T: frame_system::Config> pallet_ranked_collective::WeightInfo for WeightInf
// Measured: `500 + n * (50 ±0)` // Measured: `500 + n * (50 ±0)`
// Estimated: `5964 + n * (2540 ±0)` // Estimated: `5964 + n * (2540 ±0)`
// Minimum execution time: 14_618 nanoseconds. // Minimum execution time: 14_618 nanoseconds.
Weight::from_ref_time(17_728_262) Weight::from_parts(17_728_262, 0)
.saturating_add(Weight::from_proof_size(5964)) .saturating_add(Weight::from_parts(0, 5964))
// Standard Error: 1_481 // Standard Error: 1_481
.saturating_add(Weight::from_ref_time(917_792).saturating_mul(n.into())) .saturating_add(Weight::from_parts(917_792, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(2540).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 2540).saturating_mul(n.into()))
} }
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `361` // Measured: `361`
// Estimated: `44454` // Estimated: `44454`
// Minimum execution time: 28_830 nanoseconds. // Minimum execution time: 28_830 nanoseconds.
Weight::from_ref_time(29_377_000) Weight::from_parts(29_377_000, 0)
.saturating_add(Weight::from_proof_size(44454)) .saturating_add(Weight::from_parts(0, 44454))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `502` // Measured: `502`
// Estimated: `86251` // Estimated: `86251`
// Minimum execution time: 47_815 nanoseconds. // Minimum execution time: 47_815 nanoseconds.
Weight::from_ref_time(48_387_000) Weight::from_parts(48_387_000, 0)
.saturating_add(Weight::from_proof_size(86251)) .saturating_add(Weight::from_parts(0, 86251))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `1975` // Measured: `1975`
// Estimated: `9151` // Estimated: `9151`
// Minimum execution time: 62_881 nanoseconds. // Minimum execution time: 62_881 nanoseconds.
Weight::from_ref_time(64_964_000) Weight::from_parts(64_964_000, 0)
.saturating_add(Weight::from_proof_size(9151)) .saturating_add(Weight::from_parts(0, 9151))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `2016` // Measured: `2016`
// Estimated: `9151` // Estimated: `9151`
// Minimum execution time: 61_746 nanoseconds. // Minimum execution time: 61_746 nanoseconds.
Weight::from_ref_time(63_673_000) Weight::from_parts(63_673_000, 0)
.saturating_add(Weight::from_proof_size(9151)) .saturating_add(Weight::from_parts(0, 9151))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -122,8 +122,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `872` // Measured: `872`
// Estimated: `91229` // Estimated: `91229`
// Minimum execution time: 120_917 nanoseconds. // Minimum execution time: 120_917 nanoseconds.
Weight::from_ref_time(124_944_000) Weight::from_parts(124_944_000, 0)
.saturating_add(Weight::from_proof_size(91229)) .saturating_add(Weight::from_parts(0, 91229))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -138,8 +138,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `644` // Measured: `644`
// Estimated: `8353` // Estimated: `8353`
// Minimum execution time: 40_448 nanoseconds. // Minimum execution time: 40_448 nanoseconds.
Weight::from_ref_time(41_118_000) Weight::from_parts(41_118_000, 0)
.saturating_add(Weight::from_proof_size(8353)) .saturating_add(Weight::from_parts(0, 8353))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -150,8 +150,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `415` // Measured: `415`
// Estimated: `3375` // Estimated: `3375`
// Minimum execution time: 25_651 nanoseconds. // Minimum execution time: 25_651 nanoseconds.
Weight::from_ref_time(26_290_000) Weight::from_parts(26_290_000, 0)
.saturating_add(Weight::from_proof_size(3375)) .saturating_add(Weight::from_parts(0, 3375))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -162,8 +162,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `233` // Measured: `233`
// Estimated: `3375` // Estimated: `3375`
// Minimum execution time: 14_723 nanoseconds. // Minimum execution time: 14_723 nanoseconds.
Weight::from_ref_time(15_085_000) Weight::from_parts(15_085_000, 0)
.saturating_add(Weight::from_proof_size(3375)) .saturating_add(Weight::from_parts(0, 3375))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -176,8 +176,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `415` // Measured: `415`
// Estimated: `86251` // Estimated: `86251`
// Minimum execution time: 36_823 nanoseconds. // Minimum execution time: 36_823 nanoseconds.
Weight::from_ref_time(37_213_000) Weight::from_parts(37_213_000, 0)
.saturating_add(Weight::from_proof_size(86251)) .saturating_add(Weight::from_parts(0, 86251))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `548` // Measured: `548`
// Estimated: `88778` // Estimated: `88778`
// Minimum execution time: 67_448 nanoseconds. // Minimum execution time: 67_448 nanoseconds.
Weight::from_ref_time(68_149_000) Weight::from_parts(68_149_000, 0)
.saturating_add(Weight::from_proof_size(88778)) .saturating_add(Weight::from_parts(0, 88778))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -206,8 +206,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `174` // Measured: `174`
// Estimated: `5776` // Estimated: `5776`
// Minimum execution time: 9_582 nanoseconds. // Minimum execution time: 9_582 nanoseconds.
Weight::from_ref_time(9_956_000) Weight::from_parts(9_956_000, 0)
.saturating_add(Weight::from_proof_size(5776)) .saturating_add(Weight::from_parts(0, 5776))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -224,8 +224,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3147` // Measured: `3147`
// Estimated: `92027` // Estimated: `92027`
// Minimum execution time: 133_463 nanoseconds. // Minimum execution time: 133_463 nanoseconds.
Weight::from_ref_time(136_045_000) Weight::from_parts(136_045_000, 0)
.saturating_add(Weight::from_proof_size(92027)) .saturating_add(Weight::from_parts(0, 92027))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -242,8 +242,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3147` // Measured: `3147`
// Estimated: `92027` // Estimated: `92027`
// Minimum execution time: 134_597 nanoseconds. // Minimum execution time: 134_597 nanoseconds.
Weight::from_ref_time(137_825_000) Weight::from_parts(137_825_000, 0)
.saturating_add(Weight::from_proof_size(92027)) .saturating_add(Weight::from_parts(0, 92027))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -258,8 +258,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `2790` // Measured: `2790`
// Estimated: `48100` // Estimated: `48100`
// Minimum execution time: 71_976 nanoseconds. // Minimum execution time: 71_976 nanoseconds.
Weight::from_ref_time(74_636_000) Weight::from_parts(74_636_000, 0)
.saturating_add(Weight::from_proof_size(48100)) .saturating_add(Weight::from_parts(0, 48100))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -274,8 +274,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `2757` // Measured: `2757`
// Estimated: `48100` // Estimated: `48100`
// Minimum execution time: 72_500 nanoseconds. // Minimum execution time: 72_500 nanoseconds.
Weight::from_ref_time(73_910_000) Weight::from_parts(73_910_000, 0)
.saturating_add(Weight::from_proof_size(48100)) .saturating_add(Weight::from_parts(0, 48100))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -292,8 +292,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `2773` // Measured: `2773`
// Estimated: `50589` // Estimated: `50589`
// Minimum execution time: 75_313 nanoseconds. // Minimum execution time: 75_313 nanoseconds.
Weight::from_ref_time(77_536_000) Weight::from_parts(77_536_000, 0)
.saturating_add(Weight::from_proof_size(50589)) .saturating_add(Weight::from_parts(0, 50589))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -310,8 +310,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `2814` // Measured: `2814`
// Estimated: `50589` // Estimated: `50589`
// Minimum execution time: 74_099 nanoseconds. // Minimum execution time: 74_099 nanoseconds.
Weight::from_ref_time(77_098_000) Weight::from_parts(77_098_000, 0)
.saturating_add(Weight::from_proof_size(50589)) .saturating_add(Weight::from_parts(0, 50589))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -324,8 +324,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `367` // Measured: `367`
// Estimated: `44813` // Estimated: `44813`
// Minimum execution time: 25_113 nanoseconds. // Minimum execution time: 25_113 nanoseconds.
Weight::from_ref_time(26_134_000) Weight::from_parts(26_134_000, 0)
.saturating_add(Weight::from_proof_size(44813)) .saturating_add(Weight::from_parts(0, 44813))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -338,8 +338,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `415` // Measured: `415`
// Estimated: `44813` // Estimated: `44813`
// Minimum execution time: 25_567 nanoseconds. // Minimum execution time: 25_567 nanoseconds.
Weight::from_ref_time(26_072_000) Weight::from_parts(26_072_000, 0)
.saturating_add(Weight::from_proof_size(44813)) .saturating_add(Weight::from_parts(0, 44813))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -350,8 +350,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `274` // Measured: `274`
// Estimated: `3375` // Estimated: `3375`
// Minimum execution time: 17_031 nanoseconds. // Minimum execution time: 17_031 nanoseconds.
Weight::from_ref_time(17_652_000) Weight::from_parts(17_652_000, 0)
.saturating_add(Weight::from_proof_size(3375)) .saturating_add(Weight::from_parts(0, 3375))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -368,8 +368,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `650` // Measured: `650`
// Estimated: `49791` // Estimated: `49791`
// Minimum execution time: 37_418 nanoseconds. // Minimum execution time: 37_418 nanoseconds.
Weight::from_ref_time(38_186_000) Weight::from_parts(38_186_000, 0)
.saturating_add(Weight::from_proof_size(49791)) .saturating_add(Weight::from_parts(0, 49791))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -386,8 +386,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `785` // Measured: `785`
// Estimated: `49791` // Estimated: `49791`
// Minimum execution time: 62_637 nanoseconds. // Minimum execution time: 62_637 nanoseconds.
Weight::from_ref_time(64_215_000) Weight::from_parts(64_215_000, 0)
.saturating_add(Weight::from_proof_size(49791)) .saturating_add(Weight::from_parts(0, 49791))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -402,8 +402,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `836` // Measured: `836`
// Estimated: `47302` // Estimated: `47302`
// Minimum execution time: 87_588 nanoseconds. // Minimum execution time: 87_588 nanoseconds.
Weight::from_ref_time(93_346_000) Weight::from_parts(93_346_000, 0)
.saturating_add(Weight::from_proof_size(47302)) .saturating_add(Weight::from_parts(0, 47302))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -418,8 +418,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `821` // Measured: `821`
// Estimated: `47302` // Estimated: `47302`
// Minimum execution time: 77_577 nanoseconds. // Minimum execution time: 77_577 nanoseconds.
Weight::from_ref_time(94_688_000) Weight::from_parts(94_688_000, 0)
.saturating_add(Weight::from_proof_size(47302)) .saturating_add(Weight::from_parts(0, 47302))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -434,8 +434,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `836` // Measured: `836`
// Estimated: `47302` // Estimated: `47302`
// Minimum execution time: 84_376 nanoseconds. // Minimum execution time: 84_376 nanoseconds.
Weight::from_ref_time(88_018_000) Weight::from_parts(88_018_000, 0)
.saturating_add(Weight::from_proof_size(47302)) .saturating_add(Weight::from_parts(0, 47302))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -450,8 +450,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `842` // Measured: `842`
// Estimated: `47302` // Estimated: `47302`
// Minimum execution time: 57_022 nanoseconds. // Minimum execution time: 57_022 nanoseconds.
Weight::from_ref_time(59_312_000) Weight::from_parts(59_312_000, 0)
.saturating_add(Weight::from_proof_size(47302)) .saturating_add(Weight::from_parts(0, 47302))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -468,8 +468,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `842` // Measured: `842`
// Estimated: `91263` // Estimated: `91263`
// Minimum execution time: 91_098 nanoseconds. // Minimum execution time: 91_098 nanoseconds.
Weight::from_ref_time(107_166_000) Weight::from_parts(107_166_000, 0)
.saturating_add(Weight::from_proof_size(91263)) .saturating_add(Weight::from_parts(0, 91263))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -484,8 +484,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `838` // Measured: `838`
// Estimated: `47302` // Estimated: `47302`
// Minimum execution time: 87_108 nanoseconds. // Minimum execution time: 87_108 nanoseconds.
Weight::from_ref_time(91_155_000) Weight::from_parts(91_155_000, 0)
.saturating_add(Weight::from_proof_size(47302)) .saturating_add(Weight::from_parts(0, 47302))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -500,8 +500,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `418` // Measured: `418`
// Estimated: `5941` // Estimated: `5941`
// Minimum execution time: 20_058 nanoseconds. // Minimum execution time: 20_058 nanoseconds.
Weight::from_ref_time(20_892_000) Weight::from_parts(20_892_000, 0)
.saturating_add(Weight::from_proof_size(5941)) .saturating_add(Weight::from_parts(0, 5941))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -514,8 +514,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `351` // Measured: `351`
// Estimated: `5902` // Estimated: `5902`
// Minimum execution time: 17_952 nanoseconds. // Minimum execution time: 17_952 nanoseconds.
Weight::from_ref_time(18_420_000) Weight::from_parts(18_420_000, 0)
.saturating_add(Weight::from_proof_size(5902)) .saturating_add(Weight::from_parts(0, 5902))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `217` // Measured: `217`
// Estimated: `41937` // Estimated: `41937`
// Minimum execution time: 33_992 nanoseconds. // Minimum execution time: 33_992 nanoseconds.
Weight::from_ref_time(34_842_000) Weight::from_parts(34_842_000, 0)
.saturating_add(Weight::from_proof_size(41937)) .saturating_add(Weight::from_parts(0, 41937))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `502` // Measured: `502`
// Estimated: `86287` // Estimated: `86287`
// Minimum execution time: 47_618 nanoseconds. // Minimum execution time: 47_618 nanoseconds.
Weight::from_ref_time(48_754_000) Weight::from_parts(48_754_000, 0)
.saturating_add(Weight::from_proof_size(86287)) .saturating_add(Weight::from_parts(0, 86287))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -86,8 +86,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3130` // Measured: `3130`
// Estimated: `10387` // Estimated: `10387`
// Minimum execution time: 44_050 nanoseconds. // Minimum execution time: 44_050 nanoseconds.
Weight::from_ref_time(44_614_000) Weight::from_parts(44_614_000, 0)
.saturating_add(Weight::from_proof_size(10387)) .saturating_add(Weight::from_parts(0, 10387))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3150` // Measured: `3150`
// Estimated: `10387` // Estimated: `10387`
// Minimum execution time: 43_401 nanoseconds. // Minimum execution time: 43_401 nanoseconds.
Weight::from_ref_time(44_556_000) Weight::from_parts(44_556_000, 0)
.saturating_add(Weight::from_proof_size(10387)) .saturating_add(Weight::from_parts(0, 10387))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -120,8 +120,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `502` // Measured: `502`
// Estimated: `89287` // Estimated: `89287`
// Minimum execution time: 62_461 nanoseconds. // Minimum execution time: 62_461 nanoseconds.
Weight::from_ref_time(64_118_000) Weight::from_parts(64_118_000, 0)
.saturating_add(Weight::from_proof_size(89287)) .saturating_add(Weight::from_parts(0, 89287))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -136,8 +136,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `409` // Measured: `409`
// Estimated: `6411` // Estimated: `6411`
// Minimum execution time: 37_581 nanoseconds. // Minimum execution time: 37_581 nanoseconds.
Weight::from_ref_time(38_393_000) Weight::from_parts(38_393_000, 0)
.saturating_add(Weight::from_proof_size(6411)) .saturating_add(Weight::from_parts(0, 6411))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -148,8 +148,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `342` // Measured: `342`
// Estimated: `3411` // Estimated: `3411`
// Minimum execution time: 24_947 nanoseconds. // Minimum execution time: 24_947 nanoseconds.
Weight::from_ref_time(25_513_000) Weight::from_parts(25_513_000, 0)
.saturating_add(Weight::from_proof_size(3411)) .saturating_add(Weight::from_parts(0, 3411))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -160,8 +160,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `332` // Measured: `332`
// Estimated: `3411` // Estimated: `3411`
// Minimum execution time: 24_809 nanoseconds. // Minimum execution time: 24_809 nanoseconds.
Weight::from_ref_time(25_549_000) Weight::from_parts(25_549_000, 0)
.saturating_add(Weight::from_proof_size(3411)) .saturating_add(Weight::from_parts(0, 3411))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -174,8 +174,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `378` // Measured: `378`
// Estimated: `86287` // Estimated: `86287`
// Minimum execution time: 36_573 nanoseconds. // Minimum execution time: 36_573 nanoseconds.
Weight::from_ref_time(36_932_000) Weight::from_parts(36_932_000, 0)
.saturating_add(Weight::from_proof_size(86287)) .saturating_add(Weight::from_parts(0, 86287))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -190,8 +190,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `683` // Measured: `683`
// Estimated: `88814` // Estimated: `88814`
// Minimum execution time: 88_072 nanoseconds. // Minimum execution time: 88_072 nanoseconds.
Weight::from_ref_time(90_843_000) Weight::from_parts(90_843_000, 0)
.saturating_add(Weight::from_proof_size(88814)) .saturating_add(Weight::from_parts(0, 88814))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -204,8 +204,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `101` // Measured: `101`
// Estimated: `6976` // Estimated: `6976`
// Minimum execution time: 8_905 nanoseconds. // Minimum execution time: 8_905 nanoseconds.
Weight::from_ref_time(9_237_000) Weight::from_parts(9_237_000, 0)
.saturating_add(Weight::from_proof_size(6976)) .saturating_add(Weight::from_parts(0, 6976))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -222,8 +222,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3899` // Measured: `3899`
// Estimated: `91285` // Estimated: `91285`
// Minimum execution time: 105_652 nanoseconds. // Minimum execution time: 105_652 nanoseconds.
Weight::from_ref_time(106_507_000) Weight::from_parts(106_507_000, 0)
.saturating_add(Weight::from_proof_size(91285)) .saturating_add(Weight::from_parts(0, 91285))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -240,8 +240,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3899` // Measured: `3899`
// Estimated: `91285` // Estimated: `91285`
// Minimum execution time: 107_053 nanoseconds. // Minimum execution time: 107_053 nanoseconds.
Weight::from_ref_time(107_873_000) Weight::from_parts(107_873_000, 0)
.saturating_add(Weight::from_proof_size(91285)) .saturating_add(Weight::from_parts(0, 91285))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -256,8 +256,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3917` // Measured: `3917`
// Estimated: `49336` // Estimated: `49336`
// Minimum execution time: 56_133 nanoseconds. // Minimum execution time: 56_133 nanoseconds.
Weight::from_ref_time(56_736_000) Weight::from_parts(56_736_000, 0)
.saturating_add(Weight::from_proof_size(49336)) .saturating_add(Weight::from_parts(0, 49336))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -272,8 +272,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3917` // Measured: `3917`
// Estimated: `49336` // Estimated: `49336`
// Minimum execution time: 55_954 nanoseconds. // Minimum execution time: 55_954 nanoseconds.
Weight::from_ref_time(56_831_000) Weight::from_parts(56_831_000, 0)
.saturating_add(Weight::from_proof_size(49336)) .saturating_add(Weight::from_parts(0, 49336))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -290,8 +290,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3891` // Measured: `3891`
// Estimated: `51825` // Estimated: `51825`
// Minimum execution time: 58_128 nanoseconds. // Minimum execution time: 58_128 nanoseconds.
Weight::from_ref_time(58_927_000) Weight::from_parts(58_927_000, 0)
.saturating_add(Weight::from_proof_size(51825)) .saturating_add(Weight::from_parts(0, 51825))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -308,8 +308,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `3911` // Measured: `3911`
// Estimated: `51825` // Estimated: `51825`
// Minimum execution time: 58_211 nanoseconds. // Minimum execution time: 58_211 nanoseconds.
Weight::from_ref_time(58_820_000) Weight::from_parts(58_820_000, 0)
.saturating_add(Weight::from_proof_size(51825)) .saturating_add(Weight::from_parts(0, 51825))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -322,8 +322,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `330` // Measured: `330`
// Estimated: `44849` // Estimated: `44849`
// Minimum execution time: 24_585 nanoseconds. // Minimum execution time: 24_585 nanoseconds.
Weight::from_ref_time(26_129_000) Weight::from_parts(26_129_000, 0)
.saturating_add(Weight::from_proof_size(44849)) .saturating_add(Weight::from_parts(0, 44849))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -336,8 +336,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `378` // Measured: `378`
// Estimated: `44849` // Estimated: `44849`
// Minimum execution time: 24_829 nanoseconds. // Minimum execution time: 24_829 nanoseconds.
Weight::from_ref_time(25_450_000) Weight::from_parts(25_450_000, 0)
.saturating_add(Weight::from_proof_size(44849)) .saturating_add(Weight::from_parts(0, 44849))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -348,8 +348,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `237` // Measured: `237`
// Estimated: `3411` // Estimated: `3411`
// Minimum execution time: 16_118 nanoseconds. // Minimum execution time: 16_118 nanoseconds.
Weight::from_ref_time(16_729_000) Weight::from_parts(16_729_000, 0)
.saturating_add(Weight::from_proof_size(3411)) .saturating_add(Weight::from_parts(0, 3411))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -366,8 +366,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `378` // Measured: `378`
// Estimated: `47849` // Estimated: `47849`
// Minimum execution time: 34_301 nanoseconds. // Minimum execution time: 34_301 nanoseconds.
Weight::from_ref_time(35_098_000) Weight::from_parts(35_098_000, 0)
.saturating_add(Weight::from_proof_size(47849)) .saturating_add(Weight::from_parts(0, 47849))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -384,8 +384,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `378` // Measured: `378`
// Estimated: `47849` // Estimated: `47849`
// Minimum execution time: 36_144 nanoseconds. // Minimum execution time: 36_144 nanoseconds.
Weight::from_ref_time(36_775_000) Weight::from_parts(36_775_000, 0)
.saturating_add(Weight::from_proof_size(47849)) .saturating_add(Weight::from_parts(0, 47849))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -400,8 +400,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `431` // Measured: `431`
// Estimated: `45360` // Estimated: `45360`
// Minimum execution time: 30_294 nanoseconds. // Minimum execution time: 30_294 nanoseconds.
Weight::from_ref_time(31_064_000) Weight::from_parts(31_064_000, 0)
.saturating_add(Weight::from_proof_size(45360)) .saturating_add(Weight::from_parts(0, 45360))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -416,8 +416,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `414` // Measured: `414`
// Estimated: `45360` // Estimated: `45360`
// Minimum execution time: 31_241 nanoseconds. // Minimum execution time: 31_241 nanoseconds.
Weight::from_ref_time(31_992_000) Weight::from_parts(31_992_000, 0)
.saturating_add(Weight::from_proof_size(45360)) .saturating_add(Weight::from_parts(0, 45360))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -432,8 +432,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `431` // Measured: `431`
// Estimated: `45360` // Estimated: `45360`
// Minimum execution time: 28_194 nanoseconds. // Minimum execution time: 28_194 nanoseconds.
Weight::from_ref_time(28_755_000) Weight::from_parts(28_755_000, 0)
.saturating_add(Weight::from_proof_size(45360)) .saturating_add(Weight::from_parts(0, 45360))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -448,8 +448,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `435` // Measured: `435`
// Estimated: `45360` // Estimated: `45360`
// Minimum execution time: 27_360 nanoseconds. // Minimum execution time: 27_360 nanoseconds.
Weight::from_ref_time(27_877_000) Weight::from_parts(27_877_000, 0)
.saturating_add(Weight::from_proof_size(45360)) .saturating_add(Weight::from_parts(0, 45360))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -466,8 +466,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `435` // Measured: `435`
// Estimated: `89321` // Estimated: `89321`
// Minimum execution time: 42_316 nanoseconds. // Minimum execution time: 42_316 nanoseconds.
Weight::from_ref_time(43_105_000) Weight::from_parts(43_105_000, 0)
.saturating_add(Weight::from_proof_size(89321)) .saturating_add(Weight::from_parts(0, 89321))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -482,8 +482,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `431` // Measured: `431`
// Estimated: `45360` // Estimated: `45360`
// Minimum execution time: 30_466 nanoseconds. // Minimum execution time: 30_466 nanoseconds.
Weight::from_ref_time(30_913_000) Weight::from_parts(30_913_000, 0)
.saturating_add(Weight::from_proof_size(45360)) .saturating_add(Weight::from_parts(0, 45360))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -498,8 +498,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `381` // Measured: `381`
// Estimated: `5977` // Estimated: `5977`
// Minimum execution time: 19_202 nanoseconds. // Minimum execution time: 19_202 nanoseconds.
Weight::from_ref_time(20_161_000) Weight::from_parts(20_161_000, 0)
.saturating_add(Weight::from_proof_size(5977)) .saturating_add(Weight::from_parts(0, 5977))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -512,8 +512,8 @@ impl<T: frame_system::Config> pallet_referenda::WeightInfo for WeightInfo<T> {
// Measured: `314` // Measured: `314`
// Estimated: `5938` // Estimated: `5938`
// Minimum execution time: 16_831 nanoseconds. // Minimum execution time: 16_831 nanoseconds.
Weight::from_ref_time(17_434_000) Weight::from_parts(17_434_000, 0)
.saturating_add(Weight::from_proof_size(5938)) .saturating_add(Weight::from_parts(0, 5938))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `69` // Measured: `69`
// Estimated: `499` // Estimated: `499`
// Minimum execution time: 4_006 nanoseconds. // Minimum execution time: 4_006 nanoseconds.
Weight::from_ref_time(4_138_000) Weight::from_parts(4_138_000, 0)
.saturating_add(Weight::from_proof_size(499)) .saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -65,10 +65,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 3_594 nanoseconds. // Minimum execution time: 3_594 nanoseconds.
Weight::from_ref_time(6_761_828) Weight::from_parts(6_761_828, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_059 // Standard Error: 2_059
.saturating_add(Weight::from_ref_time(748_372).saturating_mul(s.into())) .saturating_add(Weight::from_parts(748_372, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_590 nanoseconds. // Minimum execution time: 5_590 nanoseconds.
Weight::from_ref_time(5_750_000) Weight::from_parts(5_750_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Preimage PreimageFor (r:1 w:1) /// Storage: Preimage PreimageFor (r:1 w:1)
/// Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured) /// Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured)
@@ -90,13 +90,13 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `211 + s * (1 ±0)` // Measured: `211 + s * (1 ±0)`
// Estimated: `5252 + s * (1 ±0)` // Estimated: `5252 + s * (1 ±0)`
// Minimum execution time: 18_802 nanoseconds. // Minimum execution time: 18_802 nanoseconds.
Weight::from_ref_time(18_921_000) Weight::from_parts(18_921_000, 0)
.saturating_add(Weight::from_proof_size(5252)) .saturating_add(Weight::from_parts(0, 5252))
// Standard Error: 6 // Standard Error: 6
.saturating_add(Weight::from_ref_time(1_202).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_202, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(1).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into()))
} }
/// Storage: Scheduler Lookup (r:0 w:1) /// Storage: Scheduler Lookup (r:0 w:1)
/// Proof: Scheduler Lookup (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen) /// Proof: Scheduler Lookup (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_123 nanoseconds. // Minimum execution time: 7_123 nanoseconds.
Weight::from_ref_time(7_367_000) Weight::from_parts(7_367_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
fn service_task_periodic() -> Weight { fn service_task_periodic() -> Weight {
@@ -114,24 +114,24 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_602 nanoseconds. // Minimum execution time: 5_602 nanoseconds.
Weight::from_ref_time(5_698_000) Weight::from_parts(5_698_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn execute_dispatch_signed() -> Weight { fn execute_dispatch_signed() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_474 nanoseconds. // Minimum execution time: 2_474 nanoseconds.
Weight::from_ref_time(2_548_000) Weight::from_parts(2_548_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn execute_dispatch_unsigned() -> Weight { fn execute_dispatch_unsigned() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_426 nanoseconds. // Minimum execution time: 2_426 nanoseconds.
Weight::from_ref_time(2_498_000) Weight::from_parts(2_498_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Scheduler Agenda (r:1 w:1) /// Storage: Scheduler Agenda (r:1 w:1)
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(38963), added: 41438, mode: MaxEncodedLen) /// Proof: Scheduler Agenda (max_values: None, max_size: Some(38963), added: 41438, mode: MaxEncodedLen)
@@ -141,10 +141,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 13_226 nanoseconds. // Minimum execution time: 13_226 nanoseconds.
Weight::from_ref_time(16_332_006) Weight::from_parts(16_332_006, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_602 // Standard Error: 2_602
.saturating_add(Weight::from_ref_time(746_554).saturating_mul(s.into())) .saturating_add(Weight::from_parts(746_554, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -158,10 +158,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 16_987 nanoseconds. // Minimum execution time: 16_987 nanoseconds.
Weight::from_ref_time(17_076_132) Weight::from_parts(17_076_132, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_072 // Standard Error: 2_072
.saturating_add(Weight::from_ref_time(1_314_099).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_314_099, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -175,10 +175,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `325 + s * (185 ±0)` // Measured: `325 + s * (185 ±0)`
// Estimated: `43961` // Estimated: `43961`
// Minimum execution time: 16_114 nanoseconds. // Minimum execution time: 16_114 nanoseconds.
Weight::from_ref_time(20_473_856) Weight::from_parts(20_473_856, 0)
.saturating_add(Weight::from_proof_size(43961)) .saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 3_322 // Standard Error: 3_322
.saturating_add(Weight::from_ref_time(776_525).saturating_mul(s.into())) .saturating_add(Weight::from_parts(776_525, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `351 + s * (185 ±0)` // Measured: `351 + s * (185 ±0)`
// Estimated: `43961` // Estimated: `43961`
// Minimum execution time: 18_404 nanoseconds. // Minimum execution time: 18_404 nanoseconds.
Weight::from_ref_time(19_488_174) Weight::from_parts(19_488_174, 0)
.saturating_add(Weight::from_proof_size(43961)) .saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 2_853 // Standard Error: 2_853
.saturating_add(Weight::from_ref_time(1_338_942).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_338_942, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `2147` // Measured: `2147`
// Estimated: `25185` // Estimated: `25185`
// Minimum execution time: 51_574 nanoseconds. // Minimum execution time: 51_574 nanoseconds.
Weight::from_ref_time(52_463_000) Weight::from_parts(52_463_000, 0)
.saturating_add(Weight::from_proof_size(25185)) .saturating_add(Weight::from_parts(0, 25185))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `2043` // Measured: `2043`
// Estimated: `10127` // Estimated: `10127`
// Minimum execution time: 37_193 nanoseconds. // Minimum execution time: 37_193 nanoseconds.
Weight::from_ref_time(37_931_000) Weight::from_parts(37_931_000, 0)
.saturating_add(Weight::from_proof_size(10127)) .saturating_add(Weight::from_parts(0, 10127))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1012` // Measured: `1012`
// Estimated: `10386` // Estimated: `10386`
// Minimum execution time: 44_827 nanoseconds. // Minimum execution time: 44_827 nanoseconds.
Weight::from_ref_time(45_309_000) Weight::from_parts(45_309_000, 0)
.saturating_add(Weight::from_proof_size(10386)) .saturating_add(Weight::from_parts(0, 10386))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -80,8 +80,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2179` // Measured: `2179`
// Estimated: `22888` // Estimated: `22888`
// Minimum execution time: 81_836 nanoseconds. // Minimum execution time: 81_836 nanoseconds.
Weight::from_ref_time(82_905_000) Weight::from_parts(82_905_000, 0)
.saturating_add(Weight::from_proof_size(22888)) .saturating_add(Weight::from_parts(0, 22888))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2390` // Measured: `2390`
// Estimated: `29790` // Estimated: `29790`
// Minimum execution time: 89_566 nanoseconds. // Minimum execution time: 89_566 nanoseconds.
Weight::from_ref_time(90_530_000) Weight::from_parts(90_530_000, 0)
.saturating_add(Weight::from_proof_size(29790)) .saturating_add(Weight::from_parts(0, 29790))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -127,10 +127,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1008` // Measured: `1008`
// Estimated: `10442` // Estimated: `10442`
// Minimum execution time: 36_097 nanoseconds. // Minimum execution time: 36_097 nanoseconds.
Weight::from_ref_time(37_091_545) Weight::from_parts(37_091_545, 0)
.saturating_add(Weight::from_proof_size(10442)) .saturating_add(Weight::from_parts(0, 10442))
// Standard Error: 607 // Standard Error: 607
.saturating_add(Weight::from_ref_time(15_576).saturating_mul(s.into())) .saturating_add(Weight::from_parts(15_576, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -168,14 +168,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2409 + s * (4 ±0)` // Measured: `2409 + s * (4 ±0)`
// Estimated: `32482 + s * (4 ±0)` // Estimated: `32482 + s * (4 ±0)`
// Minimum execution time: 78_221 nanoseconds. // Minimum execution time: 78_221 nanoseconds.
Weight::from_ref_time(83_701_233) Weight::from_parts(83_701_233, 0)
.saturating_add(Weight::from_proof_size(32482)) .saturating_add(Weight::from_parts(0, 32482))
// Standard Error: 2_659 // Standard Error: 2_659
.saturating_add(Weight::from_ref_time(1_196_861).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_196_861, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads(13))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -204,8 +204,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1373` // Measured: `1373`
// Estimated: `19615` // Estimated: `19615`
// Minimum execution time: 55_530 nanoseconds. // Minimum execution time: 55_530 nanoseconds.
Weight::from_ref_time(56_209_000) Weight::from_parts(56_209_000, 0)
.saturating_add(Weight::from_proof_size(19615)) .saturating_add(Weight::from_parts(0, 19615))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -219,14 +219,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1338 + k * (855 ±0)` // Measured: `1338 + k * (855 ±0)`
// Estimated: `3566 + k * (3289 ±0)` // Estimated: `3566 + k * (3289 ±0)`
// Minimum execution time: 29_457 nanoseconds. // Minimum execution time: 29_457 nanoseconds.
Weight::from_ref_time(23_700_522) Weight::from_parts(23_700_522, 0)
.saturating_add(Weight::from_proof_size(3566)) .saturating_add(Weight::from_parts(0, 3566))
// Standard Error: 12_111 // Standard Error: 12_111
.saturating_add(Weight::from_ref_time(8_187_143).saturating_mul(k.into())) .saturating_add(Weight::from_parts(8_187_143, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(3289).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 3289).saturating_mul(k.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -256,14 +256,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2003 + n * (89 ±0)` // Measured: `2003 + n * (89 ±0)`
// Estimated: `22244 + n * (2520 ±0)` // Estimated: `22244 + n * (2520 ±0)`
// Minimum execution time: 64_134 nanoseconds. // Minimum execution time: 64_134 nanoseconds.
Weight::from_ref_time(65_154_921) Weight::from_parts(65_154_921, 0)
.saturating_add(Weight::from_proof_size(22244)) .saturating_add(Weight::from_parts(0, 22244))
// Standard Error: 13_547 // Standard Error: 13_547
.saturating_add(Weight::from_ref_time(2_946_599).saturating_mul(n.into())) .saturating_add(Weight::from_parts(2_946_599, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -284,8 +284,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1799` // Measured: `1799`
// Estimated: `18188` // Estimated: `18188`
// Minimum execution time: 58_419 nanoseconds. // Minimum execution time: 58_419 nanoseconds.
Weight::from_ref_time(58_950_000) Weight::from_parts(58_950_000, 0)
.saturating_add(Weight::from_proof_size(18188)) .saturating_add(Weight::from_parts(0, 18188))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -298,8 +298,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `767` // Measured: `767`
// Estimated: `3566` // Estimated: `3566`
// Minimum execution time: 13_899 nanoseconds. // Minimum execution time: 13_899 nanoseconds.
Weight::from_ref_time(14_585_000) Weight::from_parts(14_585_000, 0)
.saturating_add(Weight::from_proof_size(3566)) .saturating_add(Weight::from_parts(0, 3566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -312,8 +312,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `866` // Measured: `866`
// Estimated: `9679` // Estimated: `9679`
// Minimum execution time: 21_075 nanoseconds. // Minimum execution time: 21_075 nanoseconds.
Weight::from_ref_time(21_355_000) Weight::from_parts(21_355_000, 0)
.saturating_add(Weight::from_proof_size(9679)) .saturating_add(Weight::from_parts(0, 9679))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -324,8 +324,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_624 nanoseconds. // Minimum execution time: 2_624 nanoseconds.
Weight::from_ref_time(2_786_000) Weight::from_parts(2_786_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -335,8 +335,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 11_010 nanoseconds. // Minimum execution time: 11_010 nanoseconds.
Weight::from_ref_time(11_302_000) Weight::from_parts(11_302_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -346,8 +346,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 10_495 nanoseconds. // Minimum execution time: 10_495 nanoseconds.
Weight::from_ref_time(10_888_000) Weight::from_parts(10_888_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -357,8 +357,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 10_878 nanoseconds. // Minimum execution time: 10_878 nanoseconds.
Weight::from_ref_time(11_314_000) Weight::from_parts(11_314_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking Invulnerables (r:0 w:1) /// Storage: Staking Invulnerables (r:0 w:1)
@@ -369,10 +369,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_887 nanoseconds. // Minimum execution time: 2_887 nanoseconds.
Weight::from_ref_time(3_053_614) Weight::from_parts(3_053_614, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 30 // Standard Error: 30
.saturating_add(Weight::from_ref_time(10_691).saturating_mul(v.into())) .saturating_add(Weight::from_parts(10_691, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking Bonded (r:1 w:1) /// Storage: Staking Bonded (r:1 w:1)
@@ -407,14 +407,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2107 + s * (4 ±0)` // Measured: `2107 + s * (4 ±0)`
// Estimated: `28115 + s * (4 ±0)` // Estimated: `28115 + s * (4 ±0)`
// Minimum execution time: 70_968 nanoseconds. // Minimum execution time: 70_968 nanoseconds.
Weight::from_ref_time(75_668_172) Weight::from_parts(75_668_172, 0)
.saturating_add(Weight::from_proof_size(28115)) .saturating_add(Weight::from_parts(0, 28115))
// Standard Error: 3_888 // Standard Error: 3_888
.saturating_add(Weight::from_ref_time(1_173_892).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_173_892, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: Staking UnappliedSlashes (r:1 w:1) /// Storage: Staking UnappliedSlashes (r:1 w:1)
/// Proof Skipped: Staking UnappliedSlashes (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Staking UnappliedSlashes (max_values: None, max_size: None, mode: Measured)
@@ -424,10 +424,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `66604` // Measured: `66604`
// Estimated: `69079` // Estimated: `69079`
// Minimum execution time: 114_586 nanoseconds. // Minimum execution time: 114_586 nanoseconds.
Weight::from_ref_time(830_663_472) Weight::from_parts(830_663_472, 0)
.saturating_add(Weight::from_proof_size(69079)) .saturating_add(Weight::from_parts(0, 69079))
// Standard Error: 51_554 // Standard Error: 51_554
.saturating_add(Weight::from_ref_time(4_320_930).saturating_mul(s.into())) .saturating_add(Weight::from_parts(4_320_930, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -455,15 +455,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `34303 + n * (149 ±0)` // Measured: `34303 + n * (149 ±0)`
// Estimated: `79842 + n * (8024 ±1)` // Estimated: `79842 + n * (8024 ±1)`
// Minimum execution time: 84_700 nanoseconds. // Minimum execution time: 84_700 nanoseconds.
Weight::from_ref_time(80_513_026) Weight::from_parts(80_513_026, 0)
.saturating_add(Weight::from_proof_size(79842)) .saturating_add(Weight::from_parts(0, 79842))
// Standard Error: 15_407 // Standard Error: 15_407
.saturating_add(Weight::from_ref_time(27_854_181).saturating_mul(n.into())) .saturating_add(Weight::from_parts(27_854_181, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(8024).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 8024).saturating_mul(n.into()))
} }
/// Storage: Staking CurrentEra (r:1 w:0) /// Storage: Staking CurrentEra (r:1 w:0)
/// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -491,15 +491,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `62042 + n * (474 ±0)` // Measured: `62042 + n * (474 ±0)`
// Estimated: `131052 + n * (16034 ±0)` // Estimated: `131052 + n * (16034 ±0)`
// Minimum execution time: 105_084 nanoseconds. // Minimum execution time: 105_084 nanoseconds.
Weight::from_ref_time(51_347_015) Weight::from_parts(51_347_015, 0)
.saturating_add(Weight::from_proof_size(131052)) .saturating_add(Weight::from_parts(0, 131052))
// Standard Error: 48_370 // Standard Error: 48_370
.saturating_add(Weight::from_ref_time(40_348_874).saturating_mul(n.into())) .saturating_add(Weight::from_parts(40_348_874, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(16034).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 16034).saturating_mul(n.into()))
} }
/// Storage: Staking Ledger (r:1 w:1) /// Storage: Staking Ledger (r:1 w:1)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -519,10 +519,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2180 + l * (5 ±0)` // Measured: `2180 + l * (5 ±0)`
// Estimated: `25491` // Estimated: `25491`
// Minimum execution time: 81_058 nanoseconds. // Minimum execution time: 81_058 nanoseconds.
Weight::from_ref_time(82_232_827) Weight::from_parts(82_232_827, 0)
.saturating_add(Weight::from_proof_size(25491)) .saturating_add(Weight::from_parts(0, 25491))
// Standard Error: 6_083 // Standard Error: 6_083
.saturating_add(Weight::from_ref_time(97_408).saturating_mul(l.into())) .saturating_add(Weight::from_parts(97_408, 0).saturating_mul(l.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -558,14 +558,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2409 + s * (4 ±0)` // Measured: `2409 + s * (4 ±0)`
// Estimated: `31989 + s * (4 ±0)` // Estimated: `31989 + s * (4 ±0)`
// Minimum execution time: 83_594 nanoseconds. // Minimum execution time: 83_594 nanoseconds.
Weight::from_ref_time(85_394_580) Weight::from_parts(85_394_580, 0)
.saturating_add(Weight::from_proof_size(31989)) .saturating_add(Weight::from_parts(0, 31989))
// Standard Error: 2_216 // Standard Error: 2_216
.saturating_add(Weight::from_ref_time(1_152_305).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_152_305, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: VoterList CounterForListNodes (r:1 w:0) /// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -610,19 +610,19 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0 + v * (3656 ±0) + n * (810 ±0)` // Measured: `0 + v * (3656 ±0) + n * (810 ±0)`
// Estimated: `441556 + v * (16995 ±0) + n * (13191 ±0)` // Estimated: `441556 + v * (16995 ±0) + n * (13191 ±0)`
// Minimum execution time: 494_448 nanoseconds. // Minimum execution time: 494_448 nanoseconds.
Weight::from_ref_time(497_850_000) Weight::from_parts(497_850_000, 0)
.saturating_add(Weight::from_proof_size(441556)) .saturating_add(Weight::from_parts(0, 441556))
// Standard Error: 1_877_946 // Standard Error: 1_877_946
.saturating_add(Weight::from_ref_time(60_221_703).saturating_mul(v.into())) .saturating_add(Weight::from_parts(60_221_703, 0).saturating_mul(v.into()))
// Standard Error: 187_127 // Standard Error: 187_127
.saturating_add(Weight::from_ref_time(16_161_800).saturating_mul(n.into())) .saturating_add(Weight::from_parts(16_161_800, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(173)) .saturating_add(T::DbWeight::get().reads(173))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
.saturating_add(Weight::from_proof_size(16995).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 16995).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(13191).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 13191).saturating_mul(n.into()))
} }
/// Storage: VoterList CounterForListNodes (r:1 w:0) /// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -649,18 +649,18 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `3101 + v * (453 ±0) + n * (1257 ±0)` // Measured: `3101 + v * (453 ±0) + n * (1257 ±0)`
// Estimated: `425504 + v * (14551 ±0) + n * (12031 ±0)` // Estimated: `425504 + v * (14551 ±0) + n * (12031 ±0)`
// Minimum execution time: 31_297_872 nanoseconds. // Minimum execution time: 31_297_872 nanoseconds.
Weight::from_ref_time(31_410_990_000) Weight::from_parts(31_410_990_000, 0)
.saturating_add(Weight::from_proof_size(425504)) .saturating_add(Weight::from_parts(0, 425504))
// Standard Error: 344_870 // Standard Error: 344_870
.saturating_add(Weight::from_ref_time(4_716_231).saturating_mul(v.into())) .saturating_add(Weight::from_parts(4_716_231, 0).saturating_mul(v.into()))
// Standard Error: 344_870 // Standard Error: 344_870
.saturating_add(Weight::from_ref_time(3_250_756).saturating_mul(n.into())) .saturating_add(Weight::from_parts(3_250_756, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(168)) .saturating_add(T::DbWeight::get().reads(168))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(14551).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 14551).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(12031).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 12031).saturating_mul(n.into()))
} }
/// Storage: Staking CounterForValidators (r:1 w:0) /// Storage: Staking CounterForValidators (r:1 w:0)
/// Proof: Staking CounterForValidators (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking CounterForValidators (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -674,14 +674,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `917 + v * (50 ±0)` // Measured: `917 + v * (50 ±0)`
// Estimated: `3562 + v * (2520 ±0)` // Estimated: `3562 + v * (2520 ±0)`
// Minimum execution time: 3_903_963 nanoseconds. // Minimum execution time: 3_903_963 nanoseconds.
Weight::from_ref_time(48_632_315) Weight::from_parts(48_632_315, 0)
.saturating_add(Weight::from_proof_size(3562)) .saturating_add(Weight::from_parts(0, 3562))
// Standard Error: 21_723 // Standard Error: 21_723
.saturating_add(Weight::from_ref_time(7_872_443).saturating_mul(v.into())) .saturating_add(Weight::from_parts(7_872_443, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into()))
} }
/// Storage: Staking MinCommission (r:0 w:1) /// Storage: Staking MinCommission (r:0 w:1)
/// Proof: Staking MinCommission (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking MinCommission (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -700,8 +700,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_184 nanoseconds. // Minimum execution time: 6_184 nanoseconds.
Weight::from_ref_time(6_506_000) Weight::from_parts(6_506_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
/// Storage: Staking MinCommission (r:0 w:1) /// Storage: Staking MinCommission (r:0 w:1)
@@ -721,8 +721,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_703 nanoseconds. // Minimum execution time: 5_703 nanoseconds.
Weight::from_ref_time(5_937_000) Weight::from_parts(5_937_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
@@ -750,8 +750,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1954` // Measured: `1954`
// Estimated: `19694` // Estimated: `19694`
// Minimum execution time: 68_958 nanoseconds. // Minimum execution time: 68_958 nanoseconds.
Weight::from_ref_time(71_763_000) Weight::from_parts(71_763_000, 0)
.saturating_add(Weight::from_proof_size(19694)) .saturating_add(Weight::from_parts(0, 19694))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -764,8 +764,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `627` // Measured: `627`
// Estimated: `3019` // Estimated: `3019`
// Minimum execution time: 13_086 nanoseconds. // Minimum execution time: 13_086 nanoseconds.
Weight::from_ref_time(13_390_000) Weight::from_parts(13_390_000, 0)
.saturating_add(Weight::from_proof_size(3019)) .saturating_add(Weight::from_parts(0, 3019))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -776,8 +776,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_986 nanoseconds. // Minimum execution time: 2_986 nanoseconds.
Weight::from_ref_time(3_166_000) Weight::from_parts(3_166_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `345` // Measured: `345`
// Estimated: `1006` // Estimated: `1006`
// Minimum execution time: 9_092 nanoseconds. // Minimum execution time: 9_092 nanoseconds.
Weight::from_ref_time(9_434_000) Weight::from_parts(9_434_000, 0)
.saturating_add(Weight::from_proof_size(1006)) .saturating_add(Weight::from_parts(0, 1006))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -64,7 +64,7 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `128` // Measured: `128`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_824 nanoseconds. // Minimum execution time: 3_824 nanoseconds.
Weight::from_ref_time(4_092_000) Weight::from_parts(4_092_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
} }
@@ -55,10 +55,10 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `4` // Measured: `4`
// Estimated: `4958` // Estimated: `4958`
// Minimum execution time: 23_488 nanoseconds. // Minimum execution time: 23_488 nanoseconds.
Weight::from_ref_time(24_665_855) Weight::from_parts(24_665_855, 0)
.saturating_add(Weight::from_proof_size(4958)) .saturating_add(Weight::from_parts(0, 4958))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(1_783).saturating_mul(r.into())) .saturating_add(Weight::from_parts(1_783, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -71,8 +71,8 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `2981` // Estimated: `2981`
// Minimum execution time: 22_395 nanoseconds. // Minimum execution time: 22_395 nanoseconds.
Weight::from_ref_time(22_770_000) Weight::from_parts(22_770_000, 0)
.saturating_add(Weight::from_proof_size(2981)) .saturating_add(Weight::from_parts(0, 2981))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,15 +89,15 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `140 + t * (64 ±0)` // Measured: `140 + t * (64 ±0)`
// Estimated: `3390 + t * (192 ±0)` // Estimated: `3390 + t * (192 ±0)`
// Minimum execution time: 18_654 nanoseconds. // Minimum execution time: 18_654 nanoseconds.
Weight::from_ref_time(17_571_965) Weight::from_parts(17_571_965, 0)
.saturating_add(Weight::from_proof_size(3390)) .saturating_add(Weight::from_parts(0, 3390))
// Standard Error: 6 // Standard Error: 6
.saturating_add(Weight::from_ref_time(1_637).saturating_mul(r.into())) .saturating_add(Weight::from_parts(1_637, 0).saturating_mul(r.into()))
// Standard Error: 5_499 // Standard Error: 5_499
.saturating_add(Weight::from_ref_time(150_704).saturating_mul(t.into())) .saturating_add(Weight::from_parts(150_704, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(192).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(t.into()))
} }
/// Storage: PhragmenElection Members (r:1 w:0) /// Storage: PhragmenElection Members (r:1 w:0)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -109,13 +109,13 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `393 + t * (112 ±0)` // Measured: `393 + t * (112 ±0)`
// Estimated: `3756 + t * (224 ±0)` // Estimated: `3756 + t * (224 ±0)`
// Minimum execution time: 14_469 nanoseconds. // Minimum execution time: 14_469 nanoseconds.
Weight::from_ref_time(14_934_101) Weight::from_parts(14_934_101, 0)
.saturating_add(Weight::from_proof_size(3756)) .saturating_add(Weight::from_parts(0, 3756))
// Standard Error: 2_197 // Standard Error: 2_197
.saturating_add(Weight::from_ref_time(117_732).saturating_mul(t.into())) .saturating_add(Weight::from_parts(117_732, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(224).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 224).saturating_mul(t.into()))
} }
/// Storage: Tips Tips (r:1 w:1) /// Storage: Tips Tips (r:1 w:1)
/// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured)
@@ -131,13 +131,13 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `432 + t * (112 ±0)` // Measured: `432 + t * (112 ±0)`
// Estimated: `6842 + t * (336 ±0)` // Estimated: `6842 + t * (336 ±0)`
// Minimum execution time: 42_637 nanoseconds. // Minimum execution time: 42_637 nanoseconds.
Weight::from_ref_time(44_262_019) Weight::from_parts(44_262_019, 0)
.saturating_add(Weight::from_proof_size(6842)) .saturating_add(Weight::from_parts(0, 6842))
// Standard Error: 4_339 // Standard Error: 4_339
.saturating_add(Weight::from_ref_time(78_341).saturating_mul(t.into())) .saturating_add(Weight::from_parts(78_341, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(336).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 336).saturating_mul(t.into()))
} }
/// Storage: Tips Tips (r:1 w:1) /// Storage: Tips Tips (r:1 w:1)
/// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured)
@@ -149,10 +149,10 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `301` // Measured: `301`
// Estimated: `3077` // Estimated: `3077`
// Minimum execution time: 13_886 nanoseconds. // Minimum execution time: 13_886 nanoseconds.
Weight::from_ref_time(14_462_519) Weight::from_parts(14_462_519, 0)
.saturating_add(Weight::from_proof_size(3077)) .saturating_add(Weight::from_parts(0, 3077))
// Standard Error: 1_255 // Standard Error: 1_255
.saturating_add(Weight::from_ref_time(11_929).saturating_mul(t.into())) .saturating_add(Weight::from_parts(11_929, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `6` // Measured: `6`
// Estimated: `1396` // Estimated: `1396`
// Minimum execution time: 13_881 nanoseconds. // Minimum execution time: 13_881 nanoseconds.
Weight::from_ref_time(14_237_000) Weight::from_parts(14_237_000, 0)
.saturating_add(Weight::from_proof_size(1396)) .saturating_add(Weight::from_parts(0, 1396))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `139` // Measured: `139`
// Estimated: `499` // Estimated: `499`
// Minimum execution time: 21_869 nanoseconds. // Minimum execution time: 21_869 nanoseconds.
Weight::from_ref_time(22_183_000) Weight::from_parts(22_183_000, 0)
.saturating_add(Weight::from_proof_size(499)) .saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `329` // Measured: `329`
// Estimated: `5186` // Estimated: `5186`
// Minimum execution time: 33_504 nanoseconds. // Minimum execution time: 33_504 nanoseconds.
Weight::from_ref_time(33_878_000) Weight::from_parts(33_878_000, 0)
.saturating_add(Weight::from_proof_size(5186)) .saturating_add(Weight::from_parts(0, 5186))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -99,10 +99,10 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `464 + p * (8 ±0)` // Measured: `464 + p * (8 ±0)`
// Estimated: `3480` // Estimated: `3480`
// Minimum execution time: 8_838 nanoseconds. // Minimum execution time: 8_838 nanoseconds.
Weight::from_ref_time(11_773_473) Weight::from_parts(11_773_473, 0)
.saturating_add(Weight::from_proof_size(3480)) .saturating_add(Weight::from_parts(0, 3480))
// Standard Error: 941 // Standard Error: 941
.saturating_add(Weight::from_ref_time(28_796).saturating_mul(p.into())) .saturating_add(Weight::from_parts(28_796, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -113,8 +113,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `90` // Measured: `90`
// Estimated: `897` // Estimated: `897`
// Minimum execution time: 6_498 nanoseconds. // Minimum execution time: 6_498 nanoseconds.
Weight::from_ref_time(6_835_000) Weight::from_parts(6_835_000, 0)
.saturating_add(Weight::from_proof_size(897)) .saturating_add(Weight::from_parts(0, 897))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -136,14 +136,14 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `326 + p * (314 ±0)` // Measured: `326 + p * (314 ±0)`
// Estimated: `5419 + p * (7789 ±0)` // Estimated: `5419 + p * (7789 ±0)`
// Minimum execution time: 58_221 nanoseconds. // Minimum execution time: 58_221 nanoseconds.
Weight::from_ref_time(63_372_444) Weight::from_parts(63_372_444, 0)
.saturating_add(Weight::from_proof_size(5419)) .saturating_add(Weight::from_parts(0, 5419))
// Standard Error: 28_649 // Standard Error: 28_649
.saturating_add(Weight::from_ref_time(31_595_141).saturating_mul(p.into())) .saturating_add(Weight::from_parts(31_595_141, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7789).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 7789).saturating_mul(p.into()))
} }
} }
@@ -51,18 +51,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_633 nanoseconds. // Minimum execution time: 6_633 nanoseconds.
Weight::from_ref_time(7_706_624) Weight::from_parts(7_706_624, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 6_035 // Standard Error: 6_035
.saturating_add(Weight::from_ref_time(4_305_964).saturating_mul(c.into())) .saturating_add(Weight::from_parts(4_305_964, 0).saturating_mul(c.into()))
} }
fn as_derivative() -> Weight { fn as_derivative() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 4_846 nanoseconds. // Minimum execution time: 4_846 nanoseconds.
Weight::from_ref_time(4_946_000) Weight::from_parts(4_946_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `c` is `[0, 1000]`. /// The range of component `c` is `[0, 1000]`.
fn batch_all(c: u32, ) -> Weight { fn batch_all(c: u32, ) -> Weight {
@@ -70,18 +70,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_675 nanoseconds. // Minimum execution time: 6_675 nanoseconds.
Weight::from_ref_time(8_813_699) Weight::from_parts(8_813_699, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_532 // Standard Error: 3_532
.saturating_add(Weight::from_ref_time(4_554_769).saturating_mul(c.into())) .saturating_add(Weight::from_parts(4_554_769, 0).saturating_mul(c.into()))
} }
fn dispatch_as() -> Weight { fn dispatch_as() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 8_735 nanoseconds. // Minimum execution time: 8_735 nanoseconds.
Weight::from_ref_time(9_040_000) Weight::from_parts(9_040_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `c` is `[0, 1000]`. /// The range of component `c` is `[0, 1000]`.
fn force_batch(c: u32, ) -> Weight { fn force_batch(c: u32, ) -> Weight {
@@ -89,9 +89,9 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_618 nanoseconds. // Minimum execution time: 6_618 nanoseconds.
Weight::from_ref_time(9_806_530) Weight::from_parts(9_806_530, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_278 // Standard Error: 3_278
.saturating_add(Weight::from_ref_time(4_289_286).saturating_mul(c.into())) .saturating_add(Weight::from_parts(4_289_286, 0).saturating_mul(c.into()))
} }
} }
@@ -56,12 +56,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `377 + l * (25 ±0) + s * (36 ±0)` // Measured: `377 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306` // Estimated: `7306`
// Minimum execution time: 29_284 nanoseconds. // Minimum execution time: 29_284 nanoseconds.
Weight::from_ref_time(28_694_538) Weight::from_parts(28_694_538, 0)
.saturating_add(Weight::from_proof_size(7306)) .saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 853 // Standard Error: 853
.saturating_add(Weight::from_ref_time(38_182).saturating_mul(l.into())) .saturating_add(Weight::from_parts(38_182, 0).saturating_mul(l.into()))
// Standard Error: 1_518 // Standard Error: 1_518
.saturating_add(Weight::from_ref_time(67_325).saturating_mul(s.into())) .saturating_add(Weight::from_parts(67_325, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -76,12 +76,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `377 + l * (25 ±0) + s * (36 ±0)` // Measured: `377 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306` // Estimated: `7306`
// Minimum execution time: 28_737 nanoseconds. // Minimum execution time: 28_737 nanoseconds.
Weight::from_ref_time(28_400_491) Weight::from_parts(28_400_491, 0)
.saturating_add(Weight::from_proof_size(7306)) .saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 848 // Standard Error: 848
.saturating_add(Weight::from_ref_time(33_813).saturating_mul(l.into())) .saturating_add(Weight::from_parts(33_813, 0).saturating_mul(l.into()))
// Standard Error: 1_510 // Standard Error: 1_510
.saturating_add(Weight::from_ref_time(44_049).saturating_mul(s.into())) .saturating_add(Weight::from_parts(44_049, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -98,12 +98,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `512 + l * (25 ±0) + s * (36 ±0)` // Measured: `512 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 31_249 nanoseconds. // Minimum execution time: 31_249 nanoseconds.
Weight::from_ref_time(30_167_020) Weight::from_parts(30_167_020, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 910 // Standard Error: 910
.saturating_add(Weight::from_ref_time(48_520).saturating_mul(l.into())) .saturating_add(Weight::from_parts(48_520, 0).saturating_mul(l.into()))
// Standard Error: 1_619 // Standard Error: 1_619
.saturating_add(Weight::from_ref_time(72_796).saturating_mul(s.into())) .saturating_add(Weight::from_parts(72_796, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -120,12 +120,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `512 + l * (25 ±0) + s * (36 ±0)` // Measured: `512 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 30_530 nanoseconds. // Minimum execution time: 30_530 nanoseconds.
Weight::from_ref_time(31_068_619) Weight::from_parts(31_068_619, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 2_695 // Standard Error: 2_695
.saturating_add(Weight::from_ref_time(21_604).saturating_mul(l.into())) .saturating_add(Weight::from_parts(21_604, 0).saturating_mul(l.into()))
// Standard Error: 4_796 // Standard Error: 4_796
.saturating_add(Weight::from_ref_time(41_979).saturating_mul(s.into())) .saturating_add(Weight::from_parts(41_979, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -142,12 +142,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `583 + l * (25 ±0) + s * (36 ±0)` // Measured: `583 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 49_659 nanoseconds. // Minimum execution time: 49_659 nanoseconds.
Weight::from_ref_time(50_352_533) Weight::from_parts(50_352_533, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 1_564 // Standard Error: 1_564
.saturating_add(Weight::from_ref_time(34_227).saturating_mul(l.into())) .saturating_add(Weight::from_parts(34_227, 0).saturating_mul(l.into()))
// Standard Error: 2_782 // Standard Error: 2_782
.saturating_add(Weight::from_ref_time(34_427).saturating_mul(s.into())) .saturating_add(Weight::from_parts(34_427, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -164,12 +164,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `718 + l * (25 ±0) + s * (36 ±0)` // Measured: `718 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `12512` // Estimated: `12512`
// Minimum execution time: 51_196 nanoseconds. // Minimum execution time: 51_196 nanoseconds.
Weight::from_ref_time(51_640_999) Weight::from_parts(51_640_999, 0)
.saturating_add(Weight::from_proof_size(12512)) .saturating_add(Weight::from_parts(0, 12512))
// Standard Error: 1_401 // Standard Error: 1_401
.saturating_add(Weight::from_ref_time(36_695).saturating_mul(l.into())) .saturating_add(Weight::from_parts(36_695, 0).saturating_mul(l.into()))
// Standard Error: 2_493 // Standard Error: 2_493
.saturating_add(Weight::from_ref_time(40_204).saturating_mul(s.into())) .saturating_add(Weight::from_parts(40_204, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -186,12 +186,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `510 + l * (25 ±0) + s * (36 ±0)` // Measured: `510 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 32_352 nanoseconds. // Minimum execution time: 32_352 nanoseconds.
Weight::from_ref_time(31_837_824) Weight::from_parts(31_837_824, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 921 // Standard Error: 921
.saturating_add(Weight::from_ref_time(40_526).saturating_mul(l.into())) .saturating_add(Weight::from_parts(40_526, 0).saturating_mul(l.into()))
// Standard Error: 1_702 // Standard Error: 1_702
.saturating_add(Weight::from_ref_time(59_295).saturating_mul(s.into())) .saturating_add(Weight::from_parts(59_295, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -208,12 +208,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `510 + l * (25 ±0) + s * (36 ±0)` // Measured: `510 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 32_523 nanoseconds. // Minimum execution time: 32_523 nanoseconds.
Weight::from_ref_time(31_708_207) Weight::from_parts(31_708_207, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 848 // Standard Error: 848
.saturating_add(Weight::from_ref_time(42_347).saturating_mul(l.into())) .saturating_add(Weight::from_parts(42_347, 0).saturating_mul(l.into()))
// Standard Error: 1_566 // Standard Error: 1_566
.saturating_add(Weight::from_ref_time(64_993).saturating_mul(s.into())) .saturating_add(Weight::from_parts(64_993, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> pallet_whitelist::WeightInfo for WeightInfo<T> {
// Measured: `151` // Measured: `151`
// Estimated: `5081` // Estimated: `5081`
// Minimum execution time: 19_057 nanoseconds. // Minimum execution time: 19_057 nanoseconds.
Weight::from_ref_time(19_276_000) Weight::from_parts(19_276_000, 0)
.saturating_add(Weight::from_proof_size(5081)) .saturating_add(Weight::from_parts(0, 5081))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -68,8 +68,8 @@ impl<T: frame_system::Config> pallet_whitelist::WeightInfo for WeightInfo<T> {
// Measured: `280` // Measured: `280`
// Estimated: `5081` // Estimated: `5081`
// Minimum execution time: 17_283 nanoseconds. // Minimum execution time: 17_283 nanoseconds.
Weight::from_ref_time(17_617_000) Weight::from_parts(17_617_000, 0)
.saturating_add(Weight::from_proof_size(5081)) .saturating_add(Weight::from_parts(0, 5081))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -85,13 +85,13 @@ impl<T: frame_system::Config> pallet_whitelist::WeightInfo for WeightInfo<T> {
// Measured: `388 + n * (1 ±0)` // Measured: `388 + n * (1 ±0)`
// Estimated: `7941 + n * (1 ±0)` // Estimated: `7941 + n * (1 ±0)`
// Minimum execution time: 28_589 nanoseconds. // Minimum execution time: 28_589 nanoseconds.
Weight::from_ref_time(28_824_000) Weight::from_parts(28_824_000, 0)
.saturating_add(Weight::from_proof_size(7941)) .saturating_add(Weight::from_parts(0, 7941))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(1_175).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_175, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(1).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
} }
/// Storage: Whitelist WhitelistedCall (r:1 w:1) /// Storage: Whitelist WhitelistedCall (r:1 w:1)
/// Proof: Whitelist WhitelistedCall (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen) /// Proof: Whitelist WhitelistedCall (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
@@ -103,10 +103,10 @@ impl<T: frame_system::Config> pallet_whitelist::WeightInfo for WeightInfo<T> {
// Measured: `280` // Measured: `280`
// Estimated: `5081` // Estimated: `5081`
// Minimum execution time: 21_200 nanoseconds. // Minimum execution time: 21_200 nanoseconds.
Weight::from_ref_time(22_063_035) Weight::from_parts(22_063_035, 0)
.saturating_add(Weight::from_proof_size(5081)) .saturating_add(Weight::from_parts(0, 5081))
// Standard Error: 4 // Standard Error: 4
.saturating_add(Weight::from_ref_time(1_534).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_534, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `211` // Measured: `211`
// Estimated: `9470` // Estimated: `9470`
// Minimum execution time: 32_654 nanoseconds. // Minimum execution time: 32_654 nanoseconds.
Weight::from_ref_time(33_637_000) Weight::from_parts(33_637_000, 0)
.saturating_add(Weight::from_proof_size(9470)) .saturating_add(Weight::from_parts(0, 9470))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,24 +70,24 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 20_880 nanoseconds. // Minimum execution time: 20_880 nanoseconds.
Weight::from_ref_time(21_414_000) Weight::from_parts(21_414_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn reserve_transfer_assets() -> Weight { fn reserve_transfer_assets() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 20_092 nanoseconds. // Minimum execution time: 20_092 nanoseconds.
Weight::from_ref_time(20_469_000) Weight::from_parts(20_469_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn execute() -> Weight { fn execute() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 9_530 nanoseconds. // Minimum execution time: 9_530 nanoseconds.
Weight::from_ref_time(9_860_000) Weight::from_parts(9_860_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: XcmPallet SupportedVersion (r:0 w:1) /// Storage: XcmPallet SupportedVersion (r:0 w:1)
/// Proof Skipped: XcmPallet SupportedVersion (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: XcmPallet SupportedVersion (max_values: None, max_size: None, mode: Measured)
@@ -96,8 +96,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 9_614 nanoseconds. // Minimum execution time: 9_614 nanoseconds.
Weight::from_ref_time(9_843_000) Weight::from_parts(9_843_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: XcmPallet SafeXcmVersion (r:0 w:1) /// Storage: XcmPallet SafeXcmVersion (r:0 w:1)
@@ -107,8 +107,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_572 nanoseconds. // Minimum execution time: 2_572 nanoseconds.
Weight::from_ref_time(2_799_000) Weight::from_parts(2_799_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: XcmPallet VersionNotifiers (r:1 w:1) /// Storage: XcmPallet VersionNotifiers (r:1 w:1)
@@ -132,8 +132,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `211` // Measured: `211`
// Estimated: `13073` // Estimated: `13073`
// Minimum execution time: 36_553 nanoseconds. // Minimum execution time: 36_553 nanoseconds.
Weight::from_ref_time(37_631_000) Weight::from_parts(37_631_000, 0)
.saturating_add(Weight::from_proof_size(13073)) .saturating_add(Weight::from_parts(0, 13073))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -156,8 +156,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `483` // Measured: `483`
// Estimated: `14271` // Estimated: `14271`
// Minimum execution time: 39_477 nanoseconds. // Minimum execution time: 39_477 nanoseconds.
Weight::from_ref_time(40_134_000) Weight::from_parts(40_134_000, 0)
.saturating_add(Weight::from_proof_size(14271)) .saturating_add(Weight::from_parts(0, 14271))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -168,8 +168,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `229` // Measured: `229`
// Estimated: `10129` // Estimated: `10129`
// Minimum execution time: 16_354 nanoseconds. // Minimum execution time: 16_354 nanoseconds.
Weight::from_ref_time(16_766_000) Weight::from_parts(16_766_000, 0)
.saturating_add(Weight::from_proof_size(10129)) .saturating_add(Weight::from_parts(0, 10129))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -180,8 +180,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `233` // Measured: `233`
// Estimated: `10133` // Estimated: `10133`
// Minimum execution time: 16_054 nanoseconds. // Minimum execution time: 16_054 nanoseconds.
Weight::from_ref_time(16_663_000) Weight::from_parts(16_663_000, 0)
.saturating_add(Weight::from_proof_size(10133)) .saturating_add(Weight::from_parts(0, 10133))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `243` // Measured: `243`
// Estimated: `12618` // Estimated: `12618`
// Minimum execution time: 18_607 nanoseconds. // Minimum execution time: 18_607 nanoseconds.
Weight::from_ref_time(19_085_000) Weight::from_parts(19_085_000, 0)
.saturating_add(Weight::from_proof_size(12618)) .saturating_add(Weight::from_parts(0, 12618))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
} }
/// Storage: XcmPallet VersionNotifyTargets (r:2 w:1) /// Storage: XcmPallet VersionNotifyTargets (r:2 w:1)
@@ -213,8 +213,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `281` // Measured: `281`
// Estimated: `15051` // Estimated: `15051`
// Minimum execution time: 33_703 nanoseconds. // Minimum execution time: 33_703 nanoseconds.
Weight::from_ref_time(34_331_000) Weight::from_parts(34_331_000, 0)
.saturating_add(Weight::from_proof_size(15051)) .saturating_add(Weight::from_parts(0, 15051))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -225,8 +225,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `272` // Measured: `272`
// Estimated: `7697` // Estimated: `7697`
// Minimum execution time: 8_596 nanoseconds. // Minimum execution time: 8_596 nanoseconds.
Weight::from_ref_time(8_843_000) Weight::from_parts(8_843_000, 0)
.saturating_add(Weight::from_proof_size(7697)) .saturating_add(Weight::from_parts(0, 7697))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
} }
/// Storage: XcmPallet VersionNotifyTargets (r:4 w:2) /// Storage: XcmPallet VersionNotifyTargets (r:4 w:2)
@@ -236,8 +236,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `240` // Measured: `240`
// Estimated: `10140` // Estimated: `10140`
// Minimum execution time: 16_717 nanoseconds. // Minimum execution time: 16_717 nanoseconds.
Weight::from_ref_time(17_265_000) Weight::from_parts(17_265_000, 0)
.saturating_add(Weight::from_proof_size(10140)) .saturating_add(Weight::from_parts(0, 10140))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -258,8 +258,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `285` // Measured: `285`
// Estimated: `20025` // Estimated: `20025`
// Minimum execution time: 40_617 nanoseconds. // Minimum execution time: 40_617 nanoseconds.
Weight::from_ref_time(41_066_000) Weight::from_parts(41_066_000, 0)
.saturating_add(Weight::from_proof_size(20025)) .saturating_add(Weight::from_parts(0, 20025))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `4` // Measured: `4`
// Estimated: `1002` // Estimated: `1002`
// Minimum execution time: 12_101 nanoseconds. // Minimum execution time: 12_101 nanoseconds.
Weight::from_ref_time(12_656_000) Weight::from_parts(12_656_000, 0)
.saturating_add(Weight::from_proof_size(1002)) .saturating_add(Weight::from_parts(0, 1002))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `725` // Measured: `725`
// Estimated: `19470` // Estimated: `19470`
// Minimum execution time: 69_639 nanoseconds. // Minimum execution time: 69_639 nanoseconds.
Weight::from_ref_time(73_490_000) Weight::from_parts(73_490_000, 0)
.saturating_add(Weight::from_proof_size(19470)) .saturating_add(Weight::from_parts(0, 19470))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `7060445` // Measured: `7060445`
// Estimated: `51339005` // Estimated: `51339005`
// Minimum execution time: 15_963_666 nanoseconds. // Minimum execution time: 15_963_666 nanoseconds.
Weight::from_ref_time(16_480_261_000) Weight::from_parts(16_480_261_000, 0)
.saturating_add(Weight::from_proof_size(51339005)) .saturating_add(Weight::from_parts(0, 51339005))
.saturating_add(T::DbWeight::get().reads(3688)) .saturating_add(T::DbWeight::get().reads(3688))
.saturating_add(T::DbWeight::get().writes(3683)) .saturating_add(T::DbWeight::get().writes(3683))
} }
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `178884` // Measured: `178884`
// Estimated: `16009503` // Estimated: `16009503`
// Minimum execution time: 4_924_110 nanoseconds. // Minimum execution time: 4_924_110 nanoseconds.
Weight::from_ref_time(5_008_960_000) Weight::from_parts(5_008_960_000, 0)
.saturating_add(Weight::from_proof_size(16009503)) .saturating_add(Weight::from_parts(0, 16009503))
.saturating_add(T::DbWeight::get().reads(3673)) .saturating_add(T::DbWeight::get().reads(3673))
.saturating_add(T::DbWeight::get().writes(3673)) .saturating_add(T::DbWeight::get().writes(3673))
} }
@@ -64,8 +64,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `652` // Measured: `652`
// Estimated: `20437` // Estimated: `20437`
// Minimum execution time: 145_850 nanoseconds. // Minimum execution time: 145_850 nanoseconds.
Weight::from_ref_time(160_914_000) Weight::from_parts(160_914_000, 0)
.saturating_add(Weight::from_proof_size(20437)) .saturating_add(Weight::from_parts(0, 20437))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -82,8 +82,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `216` // Measured: `216`
// Estimated: `1359` // Estimated: `1359`
// Minimum execution time: 10_201 nanoseconds. // Minimum execution time: 10_201 nanoseconds.
Weight::from_ref_time(10_728_000) Weight::from_parts(10_728_000, 0)
.saturating_add(Weight::from_proof_size(1359)) .saturating_add(Weight::from_parts(0, 1359))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -106,8 +106,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `652` // Measured: `652`
// Estimated: `20437` // Estimated: `20437`
// Minimum execution time: 147_863 nanoseconds. // Minimum execution time: 147_863 nanoseconds.
Weight::from_ref_time(166_266_000) Weight::from_parts(166_266_000, 0)
.saturating_add(Weight::from_proof_size(20437)) .saturating_add(Weight::from_parts(0, 20437))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -132,8 +132,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `726` // Measured: `726`
// Estimated: `23934` // Estimated: `23934`
// Minimum execution time: 68_241 nanoseconds. // Minimum execution time: 68_241 nanoseconds.
Weight::from_ref_time(76_038_000) Weight::from_parts(76_038_000, 0)
.saturating_add(Weight::from_proof_size(23934)) .saturating_add(Weight::from_parts(0, 23934))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -150,8 +150,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `472` // Measured: `472`
// Estimated: `11788` // Estimated: `11788`
// Minimum execution time: 20_763 nanoseconds. // Minimum execution time: 20_763 nanoseconds.
Weight::from_ref_time(22_172_000) Weight::from_parts(22_172_000, 0)
.saturating_add(Weight::from_proof_size(11788)) .saturating_add(Weight::from_parts(0, 11788))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `395` // Measured: `395`
// Estimated: `9500` // Estimated: `9500`
// Minimum execution time: 40_192 nanoseconds. // Minimum execution time: 40_192 nanoseconds.
Weight::from_ref_time(41_187_000) Weight::from_parts(41_187_000, 0)
.saturating_add(Weight::from_proof_size(9500)) .saturating_add(Weight::from_parts(0, 9500))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `407` // Measured: `407`
// Estimated: `14067` // Estimated: `14067`
// Minimum execution time: 116_221 nanoseconds. // Minimum execution time: 116_221 nanoseconds.
Weight::from_ref_time(117_343_000) Weight::from_parts(117_343_000, 0)
.saturating_add(Weight::from_proof_size(14067)) .saturating_add(Weight::from_parts(0, 14067))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `786` // Measured: `786`
// Estimated: `12239` // Estimated: `12239`
// Minimum execution time: 57_468 nanoseconds. // Minimum execution time: 57_468 nanoseconds.
Weight::from_ref_time(59_575_000) Weight::from_parts(59_575_000, 0)
.saturating_add(Weight::from_proof_size(12239)) .saturating_add(Weight::from_parts(0, 12239))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -115,15 +115,15 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `191 + k * (221 ±0)` // Measured: `191 + k * (221 ±0)`
// Estimated: `196 + k * (221 ±0)` // Estimated: `196 + k * (221 ±0)`
// Minimum execution time: 49_068 nanoseconds. // Minimum execution time: 49_068 nanoseconds.
Weight::from_ref_time(55_770_000) Weight::from_parts(55_770_000, 0)
.saturating_add(Weight::from_proof_size(196)) .saturating_add(Weight::from_parts(0, 196))
// Standard Error: 13_586 // Standard Error: 13_586
.saturating_add(Weight::from_ref_time(24_044_082).saturating_mul(k.into())) .saturating_add(Weight::from_parts(24_044_082, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(221).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 221).saturating_mul(k.into()))
} }
/// Storage: Crowdloan Funds (r:1 w:1) /// Storage: Crowdloan Funds (r:1 w:1)
/// Proof Skipped: Crowdloan Funds (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Crowdloan Funds (max_values: None, max_size: None, mode: Measured)
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `439` // Measured: `439`
// Estimated: `5517` // Estimated: `5517`
// Minimum execution time: 31_003 nanoseconds. // Minimum execution time: 31_003 nanoseconds.
Weight::from_ref_time(31_638_000) Weight::from_parts(31_638_000, 0)
.saturating_add(Weight::from_proof_size(5517)) .saturating_add(Weight::from_parts(0, 5517))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -146,8 +146,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `267` // Measured: `267`
// Estimated: `2742` // Estimated: `2742`
// Minimum execution time: 17_207 nanoseconds. // Minimum execution time: 17_207 nanoseconds.
Weight::from_ref_time(17_984_000) Weight::from_parts(17_984_000, 0)
.saturating_add(Weight::from_proof_size(2742)) .saturating_add(Weight::from_parts(0, 2742))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -160,8 +160,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `444` // Measured: `444`
// Estimated: `5838` // Estimated: `5838`
// Minimum execution time: 24_934 nanoseconds. // Minimum execution time: 24_934 nanoseconds.
Weight::from_ref_time(25_688_000) Weight::from_parts(25_688_000, 0)
.saturating_add(Weight::from_proof_size(5838)) .saturating_add(Weight::from_parts(0, 5838))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -174,8 +174,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `271` // Measured: `271`
// Estimated: `3512` // Estimated: `3512`
// Minimum execution time: 17_182 nanoseconds. // Minimum execution time: 17_182 nanoseconds.
Weight::from_ref_time(17_434_000) Weight::from_parts(17_434_000, 0)
.saturating_add(Weight::from_proof_size(3512)) .saturating_add(Weight::from_parts(0, 3512))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -205,14 +205,14 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `157 + n * (420 ±0)` // Measured: `157 + n * (420 ±0)`
// Estimated: `7142 + n * (14663 ±0)` // Estimated: `7142 + n * (14663 ±0)`
// Minimum execution time: 112_026 nanoseconds. // Minimum execution time: 112_026 nanoseconds.
Weight::from_ref_time(113_282_000) Weight::from_parts(113_282_000, 0)
.saturating_add(Weight::from_proof_size(7142)) .saturating_add(Weight::from_parts(0, 7142))
// Standard Error: 52_566 // Standard Error: 52_566
.saturating_add(Weight::from_ref_time(49_787_483).saturating_mul(n.into())) .saturating_add(Weight::from_parts(49_787_483, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(14663).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 14663).saturating_mul(n.into()))
} }
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `70` // Measured: `70`
// Estimated: `5655` // Estimated: `5655`
// Minimum execution time: 24_974 nanoseconds. // Minimum execution time: 24_974 nanoseconds.
Weight::from_ref_time(25_915_000) Weight::from_parts(25_915_000, 0)
.saturating_add(Weight::from_proof_size(5655)) .saturating_add(Weight::from_parts(0, 5655))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `302` // Measured: `302`
// Estimated: `18063` // Estimated: `18063`
// Minimum execution time: 7_300_136 nanoseconds. // Minimum execution time: 7_300_136 nanoseconds.
Weight::from_ref_time(7_429_498_000) Weight::from_parts(7_429_498_000, 0)
.saturating_add(Weight::from_proof_size(18063)) .saturating_add(Weight::from_parts(0, 18063))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `160` // Measured: `160`
// Estimated: `16785` // Estimated: `16785`
// Minimum execution time: 7_300_715 nanoseconds. // Minimum execution time: 7_300_715 nanoseconds.
Weight::from_ref_time(7_412_926_000) Weight::from_parts(7_412_926_000, 0)
.saturating_add(Weight::from_proof_size(16785)) .saturating_add(Weight::from_parts(0, 16785))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `467` // Measured: `467`
// Estimated: `13197` // Estimated: `13197`
// Minimum execution time: 39_974 nanoseconds. // Minimum execution time: 39_974 nanoseconds.
Weight::from_ref_time(40_522_000) Weight::from_parts(40_522_000, 0)
.saturating_add(Weight::from_proof_size(13197)) .saturating_add(Weight::from_parts(0, 13197))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -158,8 +158,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `707` // Measured: `707`
// Estimated: `27719` // Estimated: `27719`
// Minimum execution time: 47_771 nanoseconds. // Minimum execution time: 47_771 nanoseconds.
Weight::from_ref_time(48_623_000) Weight::from_parts(48_623_000, 0)
.saturating_add(Weight::from_proof_size(27719)) .saturating_add(Weight::from_parts(0, 27719))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -189,10 +189,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `28` // Measured: `28`
// Estimated: `16615` // Estimated: `16615`
// Minimum execution time: 38_081 nanoseconds. // Minimum execution time: 38_081 nanoseconds.
Weight::from_ref_time(38_483_000) Weight::from_parts(38_483_000, 0)
.saturating_add(Weight::from_proof_size(16615)) .saturating_add(Weight::from_parts(0, 16615))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_291).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_291, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -204,10 +204,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 8_520 nanoseconds. // Minimum execution time: 8_520 nanoseconds.
Weight::from_ref_time(8_722_000) Weight::from_parts(8_722_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(872).saturating_mul(b.into())) .saturating_add(Weight::from_parts(872, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `252` // Measured: `252`
// Estimated: `5330` // Estimated: `5330`
// Minimum execution time: 26_022 nanoseconds. // Minimum execution time: 26_022 nanoseconds.
Weight::from_ref_time(26_365_000) Weight::from_parts(26_365_000, 0)
.saturating_add(Weight::from_proof_size(5330)) .saturating_add(Weight::from_parts(0, 5330))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,20 +78,20 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `41 + c * (47 ±0) + t * (370 ±0)` // Measured: `41 + c * (47 ±0) + t * (370 ±0)`
// Estimated: `269050 + t * (7960 ±1) + c * (1073 ±0)` // Estimated: `269050 + t * (7960 ±1) + c * (1073 ±0)`
// Minimum execution time: 646_989 nanoseconds. // Minimum execution time: 646_989 nanoseconds.
Weight::from_ref_time(658_001_000) Weight::from_parts(658_001_000, 0)
.saturating_add(Weight::from_proof_size(269050)) .saturating_add(Weight::from_parts(0, 269050))
// Standard Error: 84_792 // Standard Error: 84_792
.saturating_add(Weight::from_ref_time(2_638_558).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_638_558, 0).saturating_mul(c.into()))
// Standard Error: 84_792 // Standard Error: 84_792
.saturating_add(Weight::from_ref_time(13_930_138).saturating_mul(t.into())) .saturating_add(Weight::from_parts(13_930_138, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(t.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(t.into())))
.saturating_add(Weight::from_proof_size(7960).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 7960).saturating_mul(t.into()))
.saturating_add(Weight::from_proof_size(1073).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 1073).saturating_mul(c.into()))
} }
/// Storage: Slots Leases (r:1 w:1) /// Storage: Slots Leases (r:1 w:1)
/// Proof Skipped: Slots Leases (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Slots Leases (max_values: None, max_size: None, mode: Measured)
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `2980` // Measured: `2980`
// Estimated: `26279` // Estimated: `26279`
// Minimum execution time: 97_608 nanoseconds. // Minimum execution time: 97_608 nanoseconds.
Weight::from_ref_time(98_942_000) Weight::from_parts(98_942_000, 0)
.saturating_add(Weight::from_proof_size(26279)) .saturating_add(Weight::from_parts(0, 26279))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(9)) .saturating_add(T::DbWeight::get().writes(9))
} }
@@ -122,8 +122,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `644` // Measured: `644`
// Estimated: `13615` // Estimated: `13615`
// Minimum execution time: 29_440 nanoseconds. // Minimum execution time: 29_440 nanoseconds.
Weight::from_ref_time(30_225_000) Weight::from_parts(30_225_000, 0)
.saturating_add(Weight::from_proof_size(13615)) .saturating_add(Weight::from_parts(0, 13615))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90` // Measured: `90`
// Estimated: `1755` // Estimated: `1755`
// Minimum execution time: 8_866 nanoseconds. // Minimum execution time: 8_866 nanoseconds.
Weight::from_ref_time(9_215_000) Weight::from_parts(9_215_000, 0)
.saturating_add(Weight::from_proof_size(1755)) .saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90` // Measured: `90`
// Estimated: `1755` // Estimated: `1755`
// Minimum execution time: 8_694 nanoseconds. // Minimum execution time: 8_694 nanoseconds.
Weight::from_ref_time(8_901_000) Weight::from_parts(8_901_000, 0)
.saturating_add(Weight::from_proof_size(1755)) .saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90` // Measured: `90`
// Estimated: `1755` // Estimated: `1755`
// Minimum execution time: 8_853 nanoseconds. // Minimum execution time: 8_853 nanoseconds.
Weight::from_ref_time(9_206_000) Weight::from_parts(9_206_000, 0)
.saturating_add(Weight::from_proof_size(1755)) .saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90` // Measured: `90`
// Estimated: `1755` // Estimated: `1755`
// Minimum execution time: 9_064 nanoseconds. // Minimum execution time: 9_064 nanoseconds.
Weight::from_ref_time(9_352_000) Weight::from_parts(9_352_000, 0)
.saturating_add(Weight::from_proof_size(1755)) .saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -116,8 +116,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_000_000_000 nanoseconds. // Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000) Weight::from_parts(2_000_000_000_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Configuration PendingConfigs (r:1 w:1) /// Storage: Configuration PendingConfigs (r:1 w:1)
/// Proof Skipped: Configuration PendingConfigs (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Configuration PendingConfigs (max_values: Some(1), max_size: None, mode: Measured)
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90` // Measured: `90`
// Estimated: `1755` // Estimated: `1755`
// Minimum execution time: 8_889 nanoseconds. // Minimum execution time: 8_889 nanoseconds.
Weight::from_ref_time(9_119_000) Weight::from_parts(9_119_000, 0)
.saturating_add(Weight::from_proof_size(1755)) .saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> runtime_parachains::disputes::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_638 nanoseconds. // Minimum execution time: 2_638 nanoseconds.
Weight::from_ref_time(2_772_000) Weight::from_parts(2_772_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `350` // Measured: `350`
// Estimated: `23095` // Estimated: `23095`
// Minimum execution time: 36_383 nanoseconds. // Minimum execution time: 36_383 nanoseconds.
Weight::from_ref_time(36_895_000) Weight::from_parts(36_895_000, 0)
.saturating_add(Weight::from_proof_size(23095)) .saturating_add(Weight::from_parts(0, 23095))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `614` // Measured: `614`
// Estimated: `18534` // Estimated: `18534`
// Minimum execution time: 40_186 nanoseconds. // Minimum execution time: 40_186 nanoseconds.
Weight::from_ref_time(40_737_000) Weight::from_parts(40_737_000, 0)
.saturating_add(Weight::from_proof_size(18534)) .saturating_add(Weight::from_parts(0, 18534))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `485` // Measured: `485`
// Estimated: `12820` // Estimated: `12820`
// Minimum execution time: 32_975 nanoseconds. // Minimum execution time: 32_975 nanoseconds.
Weight::from_ref_time(33_408_000) Weight::from_parts(33_408_000, 0)
.saturating_add(Weight::from_proof_size(12820)) .saturating_add(Weight::from_parts(0, 12820))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -132,20 +132,20 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `254 + i * (131 ±0) + e * (131 ±0)` // Measured: `254 + i * (131 ±0) + e * (131 ±0)`
// Estimated: `6354 + i * (5742 ±0) + e * (5736 ±0)` // Estimated: `6354 + i * (5742 ±0) + e * (5736 ±0)`
// Minimum execution time: 1_091_994 nanoseconds. // Minimum execution time: 1_091_994 nanoseconds.
Weight::from_ref_time(1_099_440_000) Weight::from_parts(1_099_440_000, 0)
.saturating_add(Weight::from_proof_size(6354)) .saturating_add(Weight::from_parts(0, 6354))
// Standard Error: 97_686 // Standard Error: 97_686
.saturating_add(Weight::from_ref_time(3_182_463).saturating_mul(i.into())) .saturating_add(Weight::from_parts(3_182_463, 0).saturating_mul(i.into()))
// Standard Error: 97_686 // Standard Error: 97_686
.saturating_add(Weight::from_ref_time(3_246_407).saturating_mul(e.into())) .saturating_add(Weight::from_parts(3_246_407, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(e.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(e.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(e.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(e.into())))
.saturating_add(Weight::from_proof_size(5742).saturating_mul(i.into())) .saturating_add(Weight::from_parts(0, 5742).saturating_mul(i.into()))
.saturating_add(Weight::from_proof_size(5736).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 5736).saturating_mul(e.into()))
} }
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -169,15 +169,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `466 + c * (166 ±0)` // Measured: `466 + c * (166 ±0)`
// Estimated: `4116 + c * (18661 ±0)` // Estimated: `4116 + c * (18661 ±0)`
// Minimum execution time: 6_712 nanoseconds. // Minimum execution time: 6_712 nanoseconds.
Weight::from_ref_time(1_408_797) Weight::from_parts(1_408_797, 0)
.saturating_add(Weight::from_proof_size(4116)) .saturating_add(Weight::from_parts(0, 4116))
// Standard Error: 24_094 // Standard Error: 24_094
.saturating_add(Weight::from_ref_time(19_186_351).saturating_mul(c.into())) .saturating_add(Weight::from_parts(19_186_351, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((6_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((6_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(18661).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 18661).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpCloseChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpCloseChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpCloseChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpCloseChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -197,15 +197,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `307 + c * (155 ±0)` // Measured: `307 + c * (155 ±0)`
// Estimated: `2232 + c * (8361 ±0)` // Estimated: `2232 + c * (8361 ±0)`
// Minimum execution time: 5_264 nanoseconds. // Minimum execution time: 5_264 nanoseconds.
Weight::from_ref_time(1_997_547) Weight::from_parts(1_997_547, 0)
.saturating_add(Weight::from_proof_size(2232)) .saturating_add(Weight::from_parts(0, 2232))
// Standard Error: 14_409 // Standard Error: 14_409
.saturating_add(Weight::from_ref_time(11_657_375).saturating_mul(c.into())) .saturating_add(Weight::from_parts(11_657_375, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(8361).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 8361).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -219,13 +219,13 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `1022 + c * (13 ±0)` // Measured: `1022 + c * (13 ±0)`
// Estimated: `7911 + c * (45 ±0)` // Estimated: `7911 + c * (45 ±0)`
// Minimum execution time: 20_462 nanoseconds. // Minimum execution time: 20_462 nanoseconds.
Weight::from_ref_time(25_144_372) Weight::from_parts(25_144_372, 0)
.saturating_add(Weight::from_proof_size(7911)) .saturating_add(Weight::from_parts(0, 7911))
// Standard Error: 1_510 // Standard Error: 1_510
.saturating_add(Weight::from_ref_time(83_458).saturating_mul(c.into())) .saturating_add(Weight::from_parts(83_458, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(45).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 45).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -237,15 +237,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `217 + c * (94 ±0)` // Measured: `217 + c * (94 ±0)`
// Estimated: `912 + c * (2664 ±0)` // Estimated: `912 + c * (2664 ±0)`
// Minimum execution time: 4_436 nanoseconds. // Minimum execution time: 4_436 nanoseconds.
Weight::from_ref_time(5_662_805) Weight::from_parts(5_662_805, 0)
.saturating_add(Weight::from_proof_size(912)) .saturating_add(Weight::from_parts(0, 912))
// Standard Error: 3_022 // Standard Error: 3_022
.saturating_add(Weight::from_ref_time(3_031_495).saturating_mul(c.into())) .saturating_add(Weight::from_parts(3_031_495, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(2664).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 2664).saturating_mul(c.into()))
} }
/// Storage: Paras ParaLifecycles (r:2 w:0) /// Storage: Paras ParaLifecycles (r:2 w:0)
/// Proof Skipped: Paras ParaLifecycles (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Paras ParaLifecycles (max_values: None, max_size: None, mode: Measured)
@@ -272,8 +272,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `350` // Measured: `350`
// Estimated: `33695` // Estimated: `33695`
// Minimum execution time: 50_914 nanoseconds. // Minimum execution time: 50_914 nanoseconds.
Weight::from_ref_time(51_428_000) Weight::from_parts(51_428_000, 0)
.saturating_add(Weight::from_proof_size(33695)) .saturating_add(Weight::from_parts(0, 33695))
.saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads(13))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> runtime_parachains::initializer::WeightInfo for We
// Measured: `28 + d * (11 ±0)` // Measured: `28 + d * (11 ±0)`
// Estimated: `519 + d * (11 ±0)` // Estimated: `519 + d * (11 ±0)`
// Minimum execution time: 3_560 nanoseconds. // Minimum execution time: 3_560 nanoseconds.
Weight::from_ref_time(5_887_979) Weight::from_parts(5_887_979, 0)
.saturating_add(Weight::from_proof_size(519)) .saturating_add(Weight::from_parts(0, 519))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(1_319).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_319, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(11).saturating_mul(d.into())) .saturating_add(Weight::from_parts(0, 11).saturating_mul(d.into()))
} }
} }
@@ -63,10 +63,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `8341` // Measured: `8341`
// Estimated: `57966` // Estimated: `57966`
// Minimum execution time: 31_317 nanoseconds. // Minimum execution time: 31_317 nanoseconds.
Weight::from_ref_time(31_503_000) Weight::from_parts(31_503_000, 0)
.saturating_add(Weight::from_proof_size(57966)) .saturating_add(Weight::from_parts(0, 57966))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_279).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_279, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -78,10 +78,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_831 nanoseconds. // Minimum execution time: 7_831 nanoseconds.
Weight::from_ref_time(8_002_000) Weight::from_parts(8_002_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(868).saturating_mul(s.into())) .saturating_add(Weight::from_parts(868, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Paras FutureCodeHash (r:1 w:1) /// Storage: Paras FutureCodeHash (r:1 w:1)
@@ -110,10 +110,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `16526` // Measured: `16526`
// Estimated: `179120` // Estimated: `179120`
// Minimum execution time: 55_648 nanoseconds. // Minimum execution time: 55_648 nanoseconds.
Weight::from_ref_time(56_107_000) Weight::from_parts(56_107_000, 0)
.saturating_add(Weight::from_proof_size(179120)) .saturating_add(Weight::from_parts(0, 179120))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_296).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_296, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -129,10 +129,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `95` // Measured: `95`
// Estimated: `2760` // Estimated: `2760`
// Minimum execution time: 13_071 nanoseconds. // Minimum execution time: 13_071 nanoseconds.
Weight::from_ref_time(13_190_000) Weight::from_parts(13_190_000, 0)
.saturating_add(Weight::from_proof_size(2760)) .saturating_add(Weight::from_parts(0, 2760))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(878).saturating_mul(s.into())) .saturating_add(Weight::from_parts(878, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -145,8 +145,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `4283` // Measured: `4283`
// Estimated: `11536` // Estimated: `11536`
// Minimum execution time: 18_691 nanoseconds. // Minimum execution time: 18_691 nanoseconds.
Weight::from_ref_time(19_280_000) Weight::from_parts(19_280_000, 0)
.saturating_add(Weight::from_proof_size(11536)) .saturating_add(Weight::from_parts(0, 11536))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -160,10 +160,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28` // Measured: `28`
// Estimated: `5006` // Estimated: `5006`
// Minimum execution time: 7_511 nanoseconds. // Minimum execution time: 7_511 nanoseconds.
Weight::from_ref_time(7_655_000) Weight::from_parts(7_655_000, 0)
.saturating_add(Weight::from_proof_size(5006)) .saturating_add(Weight::from_parts(0, 5006))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_287).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_287, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -176,8 +176,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28` // Measured: `28`
// Estimated: `2531` // Estimated: `2531`
// Minimum execution time: 5_296 nanoseconds. // Minimum execution time: 5_296 nanoseconds.
Weight::from_ref_time(5_509_000) Weight::from_parts(5_509_000, 0)
.saturating_add(Weight::from_proof_size(2531)) .saturating_add(Weight::from_parts(0, 2531))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26709` // Measured: `26709`
// Estimated: `83592` // Estimated: `83592`
// Minimum execution time: 89_411 nanoseconds. // Minimum execution time: 89_411 nanoseconds.
Weight::from_ref_time(91_895_000) Weight::from_parts(91_895_000, 0)
.saturating_add(Weight::from_proof_size(83592)) .saturating_add(Weight::from_parts(0, 83592))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -216,8 +216,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27295` // Measured: `27295`
// Estimated: `196015` // Estimated: `196015`
// Minimum execution time: 765_910 nanoseconds. // Minimum execution time: 765_910 nanoseconds.
Weight::from_ref_time(773_712_000) Weight::from_parts(773_712_000, 0)
.saturating_add(Weight::from_proof_size(196015)) .saturating_add(Weight::from_parts(0, 196015))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(104)) .saturating_add(T::DbWeight::get().writes(104))
} }
@@ -232,8 +232,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27241` // Measured: `27241`
// Estimated: `85188` // Estimated: `85188`
// Minimum execution time: 87_552 nanoseconds. // Minimum execution time: 87_552 nanoseconds.
Weight::from_ref_time(88_965_000) Weight::from_parts(88_965_000, 0)
.saturating_add(Weight::from_proof_size(85188)) .saturating_add(Weight::from_parts(0, 85188))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -252,8 +252,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26763` // Measured: `26763`
// Estimated: `140250` // Estimated: `140250`
// Minimum execution time: 604_799 nanoseconds. // Minimum execution time: 604_799 nanoseconds.
Weight::from_ref_time(610_863_000) Weight::from_parts(610_863_000, 0)
.saturating_add(Weight::from_proof_size(140250)) .saturating_add(Weight::from_parts(0, 140250))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -268,8 +268,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26709` // Measured: `26709`
// Estimated: `83592` // Estimated: `83592`
// Minimum execution time: 86_958 nanoseconds. // Minimum execution time: 86_958 nanoseconds.
Weight::from_ref_time(88_167_000) Weight::from_parts(88_167_000, 0)
.saturating_add(Weight::from_proof_size(83592)) .saturating_add(Weight::from_parts(0, 83592))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -113,13 +113,13 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `51031` // Measured: `51031`
// Estimated: `1464637 + v * (16 ±0)` // Estimated: `1464637 + v * (16 ±0)`
// Minimum execution time: 785_876 nanoseconds. // Minimum execution time: 785_876 nanoseconds.
Weight::from_ref_time(327_456_238) Weight::from_parts(327_456_238, 0)
.saturating_add(Weight::from_proof_size(1464637)) .saturating_add(Weight::from_parts(0, 1464637))
// Standard Error: 29_464 // Standard Error: 29_464
.saturating_add(Weight::from_ref_time(48_608_353).saturating_mul(v.into())) .saturating_add(Weight::from_parts(48_608_353, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(28)) .saturating_add(T::DbWeight::get().reads(28))
.saturating_add(T::DbWeight::get().writes(16)) .saturating_add(T::DbWeight::get().writes(16))
.saturating_add(Weight::from_proof_size(16).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 16).saturating_mul(v.into()))
} }
/// Storage: ParaInherent Included (r:1 w:1) /// Storage: ParaInherent Included (r:1 w:1)
/// Proof Skipped: ParaInherent Included (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: ParaInherent Included (max_values: Some(1), max_size: None, mode: Measured)
@@ -186,8 +186,8 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42834` // Measured: `42834`
// Estimated: `1187286` // Estimated: `1187286`
// Minimum execution time: 339_953 nanoseconds. // Minimum execution time: 339_953 nanoseconds.
Weight::from_ref_time(352_857_000) Weight::from_parts(352_857_000, 0)
.saturating_add(Weight::from_proof_size(1187286)) .saturating_add(Weight::from_parts(0, 1187286))
.saturating_add(T::DbWeight::get().reads(26)) .saturating_add(T::DbWeight::get().reads(26))
.saturating_add(T::DbWeight::get().writes(17)) .saturating_add(T::DbWeight::get().writes(17))
} }
@@ -259,10 +259,10 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42865` // Measured: `42865`
// Estimated: `1238413` // Estimated: `1238413`
// Minimum execution time: 5_649_970 nanoseconds. // Minimum execution time: 5_649_970 nanoseconds.
Weight::from_ref_time(916_094_354) Weight::from_parts(916_094_354, 0)
.saturating_add(Weight::from_proof_size(1238413)) .saturating_add(Weight::from_parts(0, 1238413))
// Standard Error: 48_367 // Standard Error: 48_367
.saturating_add(Weight::from_ref_time(47_832_056).saturating_mul(v.into())) .saturating_add(Weight::from_parts(47_832_056, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(29)) .saturating_add(T::DbWeight::get().reads(29))
.saturating_add(T::DbWeight::get().writes(16)) .saturating_add(T::DbWeight::get().writes(16))
} }
@@ -337,8 +337,8 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42892` // Measured: `42892`
// Estimated: `1329903` // Estimated: `1329903`
// Minimum execution time: 37_725_815 nanoseconds. // Minimum execution time: 37_725_815 nanoseconds.
Weight::from_ref_time(38_030_579_000) Weight::from_parts(38_030_579_000, 0)
.saturating_add(Weight::from_proof_size(1329903)) .saturating_add(Weight::from_parts(0, 1329903))
.saturating_add(T::DbWeight::get().reads(31)) .saturating_add(T::DbWeight::get().reads(31))
.saturating_add(T::DbWeight::get().writes(16)) .saturating_add(T::DbWeight::get().writes(16))
} }
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_075 nanoseconds. // Minimum execution time: 6_075 nanoseconds.
Weight::from_ref_time(6_138_000) Weight::from_parts(6_138_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 8 // Standard Error: 8
.saturating_add(Weight::from_ref_time(1_723).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_723, 0).saturating_mul(s.into()))
} }
/// Storage: Ump NeedsDispatch (r:1 w:1) /// Storage: Ump NeedsDispatch (r:1 w:1)
/// Proof Skipped: Ump NeedsDispatch (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Ump NeedsDispatch (max_values: Some(1), max_size: None, mode: Measured)
@@ -69,8 +69,8 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `272` // Measured: `272`
// Estimated: `2078` // Estimated: `2078`
// Minimum execution time: 9_509 nanoseconds. // Minimum execution time: 9_509 nanoseconds.
Weight::from_ref_time(9_782_000) Weight::from_parts(9_782_000, 0)
.saturating_add(Weight::from_proof_size(2078)) .saturating_add(Weight::from_parts(0, 2078))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -83,8 +83,8 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `257` // Measured: `257`
// Estimated: `3231` // Estimated: `3231`
// Minimum execution time: 23_623 nanoseconds. // Minimum execution time: 23_623 nanoseconds.
Weight::from_ref_time(23_932_000) Weight::from_parts(23_932_000, 0)
.saturating_add(Weight::from_proof_size(3231)) .saturating_add(Weight::from_parts(0, 3231))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -47,13 +47,13 @@ pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo<T> { impl<T: frame_system::Config> WeightInfo<T> {
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
pub(crate) fn withdraw_asset() -> Weight { pub(crate) fn withdraw_asset() -> Weight {
Weight::from_ref_time(20_385_000 as u64) Weight::from_parts(20_385_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:2 w:2) // Storage: System Account (r:2 w:2)
pub(crate) fn transfer_asset() -> Weight { pub(crate) fn transfer_asset() -> Weight {
Weight::from_ref_time(32_756_000 as u64) Weight::from_parts(32_756_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -65,23 +65,23 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn transfer_reserve_asset() -> Weight { pub(crate) fn transfer_reserve_asset() -> Weight {
Weight::from_ref_time(50_645_000 as u64) Weight::from_parts(50_645_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(8 as u64)) .saturating_add(T::DbWeight::get().reads(8 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64))
} }
// Storage: Benchmark Override (r:0 w:0) // Storage: Benchmark Override (r:0 w:0)
pub(crate) fn reserve_asset_deposited() -> Weight { pub(crate) fn reserve_asset_deposited() -> Weight {
Weight::from_ref_time(2_000_000_000_000 as u64) Weight::from_parts(2_000_000_000_000 as u64, 0)
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
pub(crate) fn receive_teleported_asset() -> Weight { pub(crate) fn receive_teleported_asset() -> Weight {
Weight::from_ref_time(19_595_000 as u64) Weight::from_parts(19_595_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
pub(crate) fn deposit_asset() -> Weight { pub(crate) fn deposit_asset() -> Weight {
Weight::from_ref_time(21_763_000 as u64) Weight::from_parts(21_763_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -93,7 +93,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn deposit_reserve_asset() -> Weight { pub(crate) fn deposit_reserve_asset() -> Weight {
Weight::from_ref_time(40_930_000 as u64) Weight::from_parts(40_930_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
} }
@@ -105,7 +105,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn initiate_teleport() -> Weight { pub(crate) fn initiate_teleport() -> Weight {
Weight::from_ref_time(40_788_000 as u64) Weight::from_parts(40_788_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
} }
@@ -52,38 +52,38 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn report_holding() -> Weight { pub(crate) fn report_holding() -> Weight {
Weight::from_ref_time(25_878_000 as u64) Weight::from_parts(25_878_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
pub(crate) fn buy_execution() -> Weight { pub(crate) fn buy_execution() -> Weight {
Weight::from_ref_time(3_697_000 as u64) Weight::from_parts(3_697_000 as u64, 0)
} }
// Storage: XcmPallet Queries (r:1 w:0) // Storage: XcmPallet Queries (r:1 w:0)
pub(crate) fn query_response() -> Weight { pub(crate) fn query_response() -> Weight {
Weight::from_ref_time(13_458_000 as u64) Weight::from_parts(13_458_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
} }
pub(crate) fn transact() -> Weight { pub(crate) fn transact() -> Weight {
Weight::from_ref_time(13_597_000 as u64) Weight::from_parts(13_597_000 as u64, 0)
} }
pub(crate) fn refund_surplus() -> Weight { pub(crate) fn refund_surplus() -> Weight {
Weight::from_ref_time(3_839_000 as u64) Weight::from_parts(3_839_000 as u64, 0)
} }
pub(crate) fn set_error_handler() -> Weight { pub(crate) fn set_error_handler() -> Weight {
Weight::from_ref_time(3_657_000 as u64) Weight::from_parts(3_657_000 as u64, 0)
} }
pub(crate) fn set_appendix() -> Weight { pub(crate) fn set_appendix() -> Weight {
Weight::from_ref_time(3_757_000 as u64) Weight::from_parts(3_757_000 as u64, 0)
} }
pub(crate) fn clear_error() -> Weight { pub(crate) fn clear_error() -> Weight {
Weight::from_ref_time(3_651_000 as u64) Weight::from_parts(3_651_000 as u64, 0)
} }
pub(crate) fn descend_origin() -> Weight { pub(crate) fn descend_origin() -> Weight {
Weight::from_ref_time(4_589_000 as u64) Weight::from_parts(4_589_000 as u64, 0)
} }
pub(crate) fn clear_origin() -> Weight { pub(crate) fn clear_origin() -> Weight {
Weight::from_ref_time(3_661_000 as u64) Weight::from_parts(3_661_000 as u64, 0)
} }
// Storage: XcmPallet SupportedVersion (r:1 w:0) // Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1) // Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -91,18 +91,18 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn report_error() -> Weight { pub(crate) fn report_error() -> Weight {
Weight::from_ref_time(21_351_000 as u64) Weight::from_parts(21_351_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: XcmPallet AssetTraps (r:1 w:1) // Storage: XcmPallet AssetTraps (r:1 w:1)
pub(crate) fn claim_asset() -> Weight { pub(crate) fn claim_asset() -> Weight {
Weight::from_ref_time(7_674_000 as u64) Weight::from_parts(7_674_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
pub(crate) fn trap() -> Weight { pub(crate) fn trap() -> Weight {
Weight::from_ref_time(3_606_000 as u64) Weight::from_parts(3_606_000 as u64, 0)
} }
// Storage: XcmPallet VersionNotifyTargets (r:1 w:1) // Storage: XcmPallet VersionNotifyTargets (r:1 w:1)
// Storage: XcmPallet SupportedVersion (r:1 w:0) // Storage: XcmPallet SupportedVersion (r:1 w:0)
@@ -111,13 +111,13 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn subscribe_version() -> Weight { pub(crate) fn subscribe_version() -> Weight {
Weight::from_ref_time(30_453_000 as u64) Weight::from_parts(30_453_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
} }
// Storage: XcmPallet VersionNotifyTargets (r:0 w:1) // Storage: XcmPallet VersionNotifyTargets (r:0 w:1)
pub(crate) fn unsubscribe_version() -> Weight { pub(crate) fn unsubscribe_version() -> Weight {
Weight::from_ref_time(5_543_000 as u64) Weight::from_parts(5_543_000 as u64, 0)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: XcmPallet SupportedVersion (r:1 w:0) // Storage: XcmPallet SupportedVersion (r:1 w:0)
@@ -126,24 +126,24 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn initiate_reserve_withdraw() -> Weight { pub(crate) fn initiate_reserve_withdraw() -> Weight {
Weight::from_ref_time(25_464_000 as u64) Weight::from_parts(25_464_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
pub(crate) fn burn_asset() -> Weight { pub(crate) fn burn_asset() -> Weight {
Weight::from_ref_time(5_194_000 as u64) Weight::from_parts(5_194_000 as u64, 0)
} }
pub(crate) fn expect_asset() -> Weight { pub(crate) fn expect_asset() -> Weight {
Weight::from_ref_time(3_698_000 as u64) Weight::from_parts(3_698_000 as u64, 0)
} }
pub(crate) fn expect_origin() -> Weight { pub(crate) fn expect_origin() -> Weight {
Weight::from_ref_time(3_786_000 as u64) Weight::from_parts(3_786_000 as u64, 0)
} }
pub(crate) fn expect_error() -> Weight { pub(crate) fn expect_error() -> Weight {
Weight::from_ref_time(3_645_000 as u64) Weight::from_parts(3_645_000 as u64, 0)
} }
pub(crate) fn expect_transact_status() -> Weight { pub(crate) fn expect_transact_status() -> Weight {
Weight::from_ref_time(3_645_000 as u64) Weight::from_parts(3_645_000 as u64, 0)
} }
// Storage: XcmPallet SupportedVersion (r:1 w:0) // Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1) // Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -151,12 +151,12 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn query_pallet() -> Weight { pub(crate) fn query_pallet() -> Weight {
Weight::from_ref_time(22_993_000 as u64) Weight::from_parts(22_993_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
pub(crate) fn expect_pallet() -> Weight { pub(crate) fn expect_pallet() -> Weight {
Weight::from_ref_time(4_043_000 as u64) Weight::from_parts(4_043_000 as u64, 0)
} }
// Storage: XcmPallet SupportedVersion (r:1 w:0) // Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1) // Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -164,23 +164,23 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1) // Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1) // Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn report_transact_status() -> Weight { pub(crate) fn report_transact_status() -> Weight {
Weight::from_ref_time(21_668_000 as u64) Weight::from_parts(21_668_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
pub(crate) fn clear_transact_status() -> Weight { pub(crate) fn clear_transact_status() -> Weight {
Weight::from_ref_time(3_673_000 as u64) Weight::from_parts(3_673_000 as u64, 0)
} }
pub(crate) fn set_topic() -> Weight { pub(crate) fn set_topic() -> Weight {
Weight::from_ref_time(3_661_000 as u64) Weight::from_parts(3_661_000 as u64, 0)
} }
pub(crate) fn clear_topic() -> Weight { pub(crate) fn clear_topic() -> Weight {
Weight::from_ref_time(3_647_000 as u64) Weight::from_parts(3_647_000 as u64, 0)
} }
pub(crate) fn set_fees_mode() -> Weight { pub(crate) fn set_fees_mode() -> Weight {
Weight::from_ref_time(3_599_000 as u64) Weight::from_parts(3_599_000 as u64, 0)
} }
pub(crate) fn unpaid_execution() -> Weight { pub(crate) fn unpaid_execution() -> Weight {
Weight::from_ref_time(3_111_000 as u64) Weight::from_parts(3_111_000 as u64, 0)
} }
} }
@@ -26,7 +26,7 @@ benchmarks! {
set_config_with_option_u32 {}: set_max_validators(RawOrigin::Root, Some(10)) set_config_with_option_u32 {}: set_max_validators(RawOrigin::Root, Some(10))
set_config_with_weight {}: set_ump_service_total_weight(RawOrigin::Root, Weight::from_ref_time(3_000_000)) set_config_with_weight {}: set_ump_service_total_weight(RawOrigin::Root, Weight::from_parts(3_000_000, 0))
set_hrmp_open_request_ttl {}: { set_hrmp_open_request_ttl {}: {
Err(BenchmarkError::Override( Err(BenchmarkError::Override(
@@ -37,15 +37,15 @@ pub struct TestWeightInfo;
impl WeightInfo for TestWeightInfo { impl WeightInfo for TestWeightInfo {
fn enter_variable_disputes(v: u32) -> Weight { fn enter_variable_disputes(v: u32) -> Weight {
// MAX Block Weight should fit 4 disputes // MAX Block Weight should fit 4 disputes
Weight::from_ref_time(80_000 * v as u64 + 80_000) Weight::from_parts(80_000 * v as u64 + 80_000, 0)
} }
fn enter_bitfields() -> Weight { fn enter_bitfields() -> Weight {
// MAX Block Weight should fit 4 backed candidates // MAX Block Weight should fit 4 backed candidates
Weight::from_ref_time(40_000u64) Weight::from_parts(40_000u64, 0)
} }
fn enter_backed_candidates_variable(v: u32) -> Weight { fn enter_backed_candidates_variable(v: u32) -> Weight {
// MAX Block Weight should fit 4 backed candidates // MAX Block Weight should fit 4 backed candidates
Weight::from_ref_time(40_000 * v as u64 + 40_000) Weight::from_parts(40_000 * v as u64 + 40_000, 0)
} }
fn enter_backed_candidate_code_upgrade() -> Weight { fn enter_backed_candidate_code_upgrade() -> Weight {
Weight::zero() Weight::zero()
@@ -52,7 +52,7 @@ parameter_types! {
/// 95th: 8_253_981 /// 95th: 8_253_981
/// 75th: 8_177_759 /// 75th: 8_177_759
pub const BlockExecutionWeight: Weight = pub const BlockExecutionWeight: Weight =
Weight::from_ref_time(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(8_148_664)); Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(8_148_664), 0);
} }
#[cfg(test)] #[cfg(test)]
@@ -52,7 +52,7 @@ parameter_types! {
/// 95th: 108_172 /// 95th: 108_172
/// 75th: 107_386 /// 75th: 107_386
pub const ExtrinsicBaseWeight: Weight = pub const ExtrinsicBaseWeight: Weight =
Weight::from_ref_time(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(107_284)); Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(107_284), 0);
} }
#[cfg(test)] #[cfg(test)]
@@ -51,8 +51,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 155 nanoseconds. // Minimum execution time: 155 nanoseconds.
Weight::from_ref_time(187_651) Weight::from_parts(187_651, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn subtraction(_i: u32, ) -> Weight { fn subtraction(_i: u32, ) -> Weight {
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 152 nanoseconds. // Minimum execution time: 152 nanoseconds.
Weight::from_ref_time(184_344) Weight::from_parts(184_344, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn multiplication(_i: u32, ) -> Weight { fn multiplication(_i: u32, ) -> Weight {
@@ -69,8 +69,8 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 160 nanoseconds. // Minimum execution time: 160 nanoseconds.
Weight::from_ref_time(192_980) Weight::from_parts(192_980, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 1000000]`. /// The range of component `i` is `[0, 1000000]`.
fn division(_i: u32, ) -> Weight { fn division(_i: u32, ) -> Weight {
@@ -78,16 +78,16 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 145 nanoseconds. // Minimum execution time: 145 nanoseconds.
Weight::from_ref_time(181_370) Weight::from_parts(181_370, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn hashing() -> Weight { fn hashing() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 23_129_025 nanoseconds. // Minimum execution time: 23_129_025 nanoseconds.
Weight::from_ref_time(23_238_640_000) Weight::from_parts(23_238_640_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `i` is `[0, 100]`. /// The range of component `i` is `[0, 100]`.
fn sr25519_verification(i: u32, ) -> Weight { fn sr25519_verification(i: u32, ) -> Weight {
@@ -95,9 +95,9 @@ impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 167 nanoseconds. // Minimum execution time: 167 nanoseconds.
Weight::from_ref_time(191_000) Weight::from_parts(191_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 18_668 // Standard Error: 18_668
.saturating_add(Weight::from_ref_time(47_265_180).saturating_mul(i.into())) .saturating_add(Weight::from_parts(47_265_180, 0).saturating_mul(i.into()))
} }
} }
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_484_074 nanoseconds. // Minimum execution time: 6_484_074 nanoseconds.
Weight::from_ref_time(6_556_949_000) Weight::from_parts(6_556_949_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 142_632 // Standard Error: 142_632
.saturating_add(Weight::from_ref_time(5_989_659).saturating_mul(v.into())) .saturating_add(Weight::from_parts(5_989_659, 0).saturating_mul(v.into()))
// Standard Error: 14_582_196 // Standard Error: 14_582_196
.saturating_add(Weight::from_ref_time(1_553_194_007).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_553_194_007, 0).saturating_mul(d.into()))
} }
/// The range of component `v` is `[1000, 2000]`. /// The range of component `v` is `[1000, 2000]`.
/// The range of component `t` is `[500, 1000]`. /// The range of component `t` is `[500, 1000]`.
@@ -68,11 +68,11 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_046_356 nanoseconds. // Minimum execution time: 5_046_356 nanoseconds.
Weight::from_ref_time(5_095_703_000) Weight::from_parts(5_095_703_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 153_538 // Standard Error: 153_538
.saturating_add(Weight::from_ref_time(5_889_022).saturating_mul(v.into())) .saturating_add(Weight::from_parts(5_889_022, 0).saturating_mul(v.into()))
// Standard Error: 15_697_272 // Standard Error: 15_697_272
.saturating_add(Weight::from_ref_time(1_818_022_290).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_818_022_290, 0).saturating_mul(d.into()))
} }
} }
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_795 nanoseconds. // Minimum execution time: 1_795 nanoseconds.
Weight::from_ref_time(1_909_000) Weight::from_parts(1_909_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(416).saturating_mul(b.into())) .saturating_add(Weight::from_parts(416, 0).saturating_mul(b.into()))
} }
/// The range of component `b` is `[0, 3932160]`. /// The range of component `b` is `[0, 3932160]`.
fn remark_with_event(b: u32, ) -> Weight { fn remark_with_event(b: u32, ) -> Weight {
@@ -62,10 +62,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_339 nanoseconds. // Minimum execution time: 7_339 nanoseconds.
Weight::from_ref_time(7_457_000) Weight::from_parts(7_457_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(1_774).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_774, 0).saturating_mul(b.into()))
} }
/// Storage: System Digest (r:1 w:1) /// Storage: System Digest (r:1 w:1)
/// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured)
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `495` // Estimated: `495`
// Minimum execution time: 3_784 nanoseconds. // Minimum execution time: 3_784 nanoseconds.
Weight::from_ref_time(3_964_000) Weight::from_parts(3_964_000, 0)
.saturating_add(Weight::from_proof_size(495)) .saturating_add(Weight::from_parts(0, 495))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_750 nanoseconds. // Minimum execution time: 1_750 nanoseconds.
Weight::from_ref_time(1_774_000) Weight::from_parts(1_774_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1_902 // Standard Error: 1_902
.saturating_add(Weight::from_ref_time(669_814).saturating_mul(i.into())) .saturating_add(Weight::from_parts(669_814, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
} }
/// Storage: Skipped Metadata (r:0 w:0) /// Storage: Skipped Metadata (r:0 w:0)
@@ -103,10 +103,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 1_825 nanoseconds. // Minimum execution time: 1_825 nanoseconds.
Weight::from_ref_time(1_870_000) Weight::from_parts(1_870_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 781 // Standard Error: 781
.saturating_add(Weight::from_ref_time(487_859).saturating_mul(i.into())) .saturating_add(Weight::from_parts(487_859, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
} }
/// Storage: Skipped Metadata (r:0 w:0) /// Storage: Skipped Metadata (r:0 w:0)
@@ -117,12 +117,12 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `131 + p * (69 ±0)` // Measured: `131 + p * (69 ±0)`
// Estimated: `117 + p * (70 ±0)` // Estimated: `117 + p * (70 ±0)`
// Minimum execution time: 3_690 nanoseconds. // Minimum execution time: 3_690 nanoseconds.
Weight::from_ref_time(3_781_000) Weight::from_parts(3_781_000, 0)
.saturating_add(Weight::from_proof_size(117)) .saturating_add(Weight::from_parts(0, 117))
// Standard Error: 1_112 // Standard Error: 1_112
.saturating_add(Weight::from_ref_time(1_004_411).saturating_mul(p.into())) .saturating_add(Weight::from_parts(1_004_411, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(70).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into()))
} }
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1814` // Measured: `1814`
// Estimated: `19186` // Estimated: `19186`
// Minimum execution time: 62_489 nanoseconds. // Minimum execution time: 62_489 nanoseconds.
Weight::from_ref_time(63_129_000) Weight::from_parts(63_129_000, 0)
.saturating_add(Weight::from_proof_size(19186)) .saturating_add(Weight::from_parts(0, 19186))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1708` // Measured: `1708`
// Estimated: `19114` // Estimated: `19114`
// Minimum execution time: 59_148 nanoseconds. // Minimum execution time: 59_148 nanoseconds.
Weight::from_ref_time(60_804_000) Weight::from_parts(60_804_000, 0)
.saturating_add(Weight::from_proof_size(19114)) .saturating_add(Weight::from_parts(0, 19114))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -96,8 +96,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `2051` // Measured: `2051`
// Estimated: `25798` // Estimated: `25798`
// Minimum execution time: 65_861 nanoseconds. // Minimum execution time: 65_861 nanoseconds.
Weight::from_ref_time(66_504_000) Weight::from_parts(66_504_000, 0)
.saturating_add(Weight::from_proof_size(25798)) .saturating_add(Weight::from_parts(0, 25798))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1822` // Measured: `1822`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 50_301 nanoseconds. // Minimum execution time: 50_301 nanoseconds.
Weight::from_ref_time(50_887_000) Weight::from_parts(50_887_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -64,8 +64,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1639` // Measured: `1639`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 38_604 nanoseconds. // Minimum execution time: 38_604 nanoseconds.
Weight::from_ref_time(39_223_000) Weight::from_parts(39_223_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1856` // Measured: `1856`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 27_662 nanoseconds. // Minimum execution time: 27_662 nanoseconds.
Weight::from_ref_time(28_376_000) Weight::from_parts(28_376_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1856` // Measured: `1856`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 31_553 nanoseconds. // Minimum execution time: 31_553 nanoseconds.
Weight::from_ref_time(32_254_000) Weight::from_parts(32_254_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -100,8 +100,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1818` // Measured: `1818`
// Estimated: `5206` // Estimated: `5206`
// Minimum execution time: 51_621 nanoseconds. // Minimum execution time: 51_621 nanoseconds.
Weight::from_ref_time(52_169_000) Weight::from_parts(52_169_000, 0)
.saturating_add(Weight::from_proof_size(5206)) .saturating_add(Weight::from_parts(0, 5206))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1639` // Measured: `1639`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 44_970 nanoseconds. // Minimum execution time: 44_970 nanoseconds.
Weight::from_ref_time(45_504_000) Weight::from_parts(45_504_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -124,8 +124,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1673` // Measured: `1673`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 24_641 nanoseconds. // Minimum execution time: 24_641 nanoseconds.
Weight::from_ref_time(26_464_000) Weight::from_parts(26_464_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -59,10 +59,10 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `175` // Measured: `175`
// Estimated: `3102` // Estimated: `3102`
// Minimum execution time: 25_384 nanoseconds. // Minimum execution time: 25_384 nanoseconds.
Weight::from_ref_time(26_855_698) Weight::from_parts(26_855_698, 0)
.saturating_add(Weight::from_proof_size(3102)) .saturating_add(Weight::from_parts(0, 3102))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(759).saturating_mul(d.into())) .saturating_add(Weight::from_parts(759, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -75,8 +75,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `267` // Measured: `267`
// Estimated: `3549` // Estimated: `3549`
// Minimum execution time: 12_031 nanoseconds. // Minimum execution time: 12_031 nanoseconds.
Weight::from_ref_time(12_313_000) Weight::from_parts(12_313_000, 0)
.saturating_add(Weight::from_proof_size(3549)) .saturating_add(Weight::from_parts(0, 3549))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -87,8 +87,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `287` // Measured: `287`
// Estimated: `2652` // Estimated: `2652`
// Minimum execution time: 10_431 nanoseconds. // Minimum execution time: 10_431 nanoseconds.
Weight::from_ref_time(10_741_000) Weight::from_parts(10_741_000, 0)
.saturating_add(Weight::from_proof_size(2652)) .saturating_add(Weight::from_parts(0, 2652))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -101,8 +101,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `495` // Measured: `495`
// Estimated: `5255` // Estimated: `5255`
// Minimum execution time: 35_648 nanoseconds. // Minimum execution time: 35_648 nanoseconds.
Weight::from_ref_time(36_567_000) Weight::from_parts(36_567_000, 0)
.saturating_add(Weight::from_proof_size(5255)) .saturating_add(Weight::from_parts(0, 5255))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -115,8 +115,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `491` // Measured: `491`
// Estimated: `5255` // Estimated: `5255`
// Minimum execution time: 23_997 nanoseconds. // Minimum execution time: 23_997 nanoseconds.
Weight::from_ref_time(24_334_000) Weight::from_parts(24_334_000, 0)
.saturating_add(Weight::from_proof_size(5255)) .saturating_add(Weight::from_parts(0, 5255))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -129,8 +129,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `437` // Measured: `437`
// Estimated: `5143` // Estimated: `5143`
// Minimum execution time: 20_452 nanoseconds. // Minimum execution time: 20_452 nanoseconds.
Weight::from_ref_time(20_827_000) Weight::from_parts(20_827_000, 0)
.saturating_add(Weight::from_proof_size(5143)) .saturating_add(Weight::from_parts(0, 5143))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -147,8 +147,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `865` // Measured: `865`
// Estimated: `12964` // Estimated: `12964`
// Minimum execution time: 76_289 nanoseconds. // Minimum execution time: 76_289 nanoseconds.
Weight::from_ref_time(77_242_000) Weight::from_parts(77_242_000, 0)
.saturating_add(Weight::from_proof_size(12964)) .saturating_add(Weight::from_parts(0, 12964))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -165,8 +165,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `513` // Measured: `513`
// Estimated: `7746` // Estimated: `7746`
// Minimum execution time: 42_076 nanoseconds. // Minimum execution time: 42_076 nanoseconds.
Weight::from_ref_time(42_491_000) Weight::from_parts(42_491_000, 0)
.saturating_add(Weight::from_proof_size(7746)) .saturating_add(Weight::from_parts(0, 7746))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -183,8 +183,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `781` // Measured: `781`
// Estimated: `10349` // Estimated: `10349`
// Minimum execution time: 51_981 nanoseconds. // Minimum execution time: 51_981 nanoseconds.
Weight::from_ref_time(52_413_000) Weight::from_parts(52_413_000, 0)
.saturating_add(Weight::from_proof_size(10349)) .saturating_add(Weight::from_parts(0, 10349))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -195,8 +195,8 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `323` // Measured: `323`
// Estimated: `2652` // Estimated: `2652`
// Minimum execution time: 15_555 nanoseconds. // Minimum execution time: 15_555 nanoseconds.
Weight::from_ref_time(15_946_000) Weight::from_parts(15_946_000, 0)
.saturating_add(Weight::from_proof_size(2652)) .saturating_add(Weight::from_parts(0, 2652))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -212,14 +212,14 @@ impl<T: frame_system::Config> pallet_bounties::WeightInfo for WeightInfo<T> {
// Measured: `0 + b * (360 ±0)` // Measured: `0 + b * (360 ±0)`
// Estimated: `897 + b * (7858 ±0)` // Estimated: `897 + b * (7858 ±0)`
// Minimum execution time: 5_282 nanoseconds. // Minimum execution time: 5_282 nanoseconds.
Weight::from_ref_time(1_893_501) Weight::from_parts(1_893_501, 0)
.saturating_add(Weight::from_proof_size(897)) .saturating_add(Weight::from_parts(0, 897))
// Standard Error: 29_881 // Standard Error: 29_881
.saturating_add(Weight::from_ref_time(34_151_121).saturating_mul(b.into())) .saturating_add(Weight::from_parts(34_151_121, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_proof_size(7858).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 7858).saturating_mul(b.into()))
} }
} }
@@ -63,10 +63,10 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `609` // Measured: `609`
// Estimated: `10848` // Estimated: `10848`
// Minimum execution time: 52_822 nanoseconds. // Minimum execution time: 52_822 nanoseconds.
Weight::from_ref_time(53_830_173) Weight::from_parts(53_830_173, 0)
.saturating_add(Weight::from_proof_size(10848)) .saturating_add(Weight::from_parts(0, 10848))
// Standard Error: 7 // Standard Error: 7
.saturating_add(Weight::from_ref_time(816).saturating_mul(d.into())) .saturating_add(Weight::from_parts(816, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -81,8 +81,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `663` // Measured: `663`
// Estimated: `7775` // Estimated: `7775`
// Minimum execution time: 20_288 nanoseconds. // Minimum execution time: 20_288 nanoseconds.
Weight::from_ref_time(20_516_000) Weight::from_parts(20_516_000, 0)
.saturating_add(Weight::from_proof_size(7775)) .saturating_add(Weight::from_parts(0, 7775))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -97,8 +97,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `841` // Measured: `841`
// Estimated: `7875` // Estimated: `7875`
// Minimum execution time: 28_881 nanoseconds. // Minimum execution time: 28_881 nanoseconds.
Weight::from_ref_time(29_223_000) Weight::from_parts(29_223_000, 0)
.saturating_add(Weight::from_proof_size(7875)) .saturating_add(Weight::from_parts(0, 7875))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -113,8 +113,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `841` // Measured: `841`
// Estimated: `7875` // Estimated: `7875`
// Minimum execution time: 41_165 nanoseconds. // Minimum execution time: 41_165 nanoseconds.
Weight::from_ref_time(41_719_000) Weight::from_parts(41_719_000, 0)
.saturating_add(Weight::from_proof_size(7875)) .saturating_add(Weight::from_parts(0, 7875))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -127,8 +127,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `706` // Measured: `706`
// Estimated: `5272` // Estimated: `5272`
// Minimum execution time: 22_428 nanoseconds. // Minimum execution time: 22_428 nanoseconds.
Weight::from_ref_time(22_898_000) Weight::from_parts(22_898_000, 0)
.saturating_add(Weight::from_proof_size(5272)) .saturating_add(Weight::from_parts(0, 5272))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -145,8 +145,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `744` // Measured: `744`
// Estimated: `12920` // Estimated: `12920`
// Minimum execution time: 72_832 nanoseconds. // Minimum execution time: 72_832 nanoseconds.
Weight::from_ref_time(73_776_000) Weight::from_parts(73_776_000, 0)
.saturating_add(Weight::from_proof_size(12920)) .saturating_add(Weight::from_parts(0, 12920))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -167,8 +167,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `973` // Measured: `973`
// Estimated: `15472` // Estimated: `15472`
// Minimum execution time: 55_400 nanoseconds. // Minimum execution time: 55_400 nanoseconds.
Weight::from_ref_time(55_912_000) Weight::from_parts(55_912_000, 0)
.saturating_add(Weight::from_proof_size(15472)) .saturating_add(Weight::from_parts(0, 15472))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -189,8 +189,8 @@ impl<T: frame_system::Config> pallet_child_bounties::WeightInfo for WeightInfo<T
// Measured: `1192` // Measured: `1192`
// Estimated: `18075` // Estimated: `18075`
// Minimum execution time: 67_548 nanoseconds. // Minimum execution time: 67_548 nanoseconds.
Weight::from_ref_time(69_397_000) Weight::from_parts(69_397_000, 0)
.saturating_add(Weight::from_proof_size(18075)) .saturating_add(Weight::from_parts(0, 18075))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -64,18 +64,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `0 + m * (3233 ±0) + p * (3223 ±0)` // Measured: `0 + m * (3233 ±0) + p * (3223 ±0)`
// Estimated: `16054 + m * (7809 ±16) + p * (10238 ±16)` // Estimated: `16054 + m * (7809 ±16) + p * (10238 ±16)`
// Minimum execution time: 17_913 nanoseconds. // Minimum execution time: 17_913 nanoseconds.
Weight::from_ref_time(18_394_000) Weight::from_parts(18_394_000, 0)
.saturating_add(Weight::from_proof_size(16054)) .saturating_add(Weight::from_parts(0, 16054))
// Standard Error: 50_650 // Standard Error: 50_650
.saturating_add(Weight::from_ref_time(5_723_694).saturating_mul(m.into())) .saturating_add(Weight::from_parts(5_723_694, 0).saturating_mul(m.into()))
// Standard Error: 50_650 // Standard Error: 50_650
.saturating_add(Weight::from_ref_time(8_485_753).saturating_mul(p.into())) .saturating_add(Weight::from_parts(8_485_753, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7809).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 7809).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(10238).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 10238).saturating_mul(p.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -88,14 +88,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `101 + m * (32 ±0)` // Measured: `101 + m * (32 ±0)`
// Estimated: `597 + m * (32 ±0)` // Estimated: `597 + m * (32 ±0)`
// Minimum execution time: 16_774 nanoseconds. // Minimum execution time: 16_774 nanoseconds.
Weight::from_ref_time(16_193_749) Weight::from_parts(16_193_749, 0)
.saturating_add(Weight::from_proof_size(597)) .saturating_add(Weight::from_parts(0, 597))
// Standard Error: 20 // Standard Error: 20
.saturating_add(Weight::from_ref_time(1_790).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_790, 0).saturating_mul(b.into()))
// Standard Error: 213 // Standard Error: 213
.saturating_add(Weight::from_ref_time(14_817).saturating_mul(m.into())) .saturating_add(Weight::from_parts(14_817, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -110,14 +110,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `101 + m * (32 ±0)` // Measured: `101 + m * (32 ±0)`
// Estimated: `3174 + m * (64 ±0)` // Estimated: `3174 + m * (64 ±0)`
// Minimum execution time: 19_209 nanoseconds. // Minimum execution time: 19_209 nanoseconds.
Weight::from_ref_time(18_354_237) Weight::from_parts(18_354_237, 0)
.saturating_add(Weight::from_proof_size(3174)) .saturating_add(Weight::from_parts(0, 3174))
// Standard Error: 23 // Standard Error: 23
.saturating_add(Weight::from_ref_time(1_734).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_734, 0).saturating_mul(b.into()))
// Standard Error: 240 // Standard Error: 240
.saturating_add(Weight::from_ref_time(26_264).saturating_mul(m.into())) .saturating_add(Weight::from_parts(26_264, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(Weight::from_proof_size(64).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -140,18 +140,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `423 + m * (32 ±0) + p * (36 ±0)` // Measured: `423 + m * (32 ±0) + p * (36 ±0)`
// Estimated: `5690 + m * (165 ±0) + p * (180 ±0)` // Estimated: `5690 + m * (165 ±0) + p * (180 ±0)`
// Minimum execution time: 25_763 nanoseconds. // Minimum execution time: 25_763 nanoseconds.
Weight::from_ref_time(26_388_122) Weight::from_parts(26_388_122, 0)
.saturating_add(Weight::from_proof_size(5690)) .saturating_add(Weight::from_parts(0, 5690))
// Standard Error: 50 // Standard Error: 50
.saturating_add(Weight::from_ref_time(2_746).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_746, 0).saturating_mul(b.into()))
// Standard Error: 523 // Standard Error: 523
.saturating_add(Weight::from_ref_time(19_574).saturating_mul(m.into())) .saturating_add(Weight::from_parts(19_574, 0).saturating_mul(m.into()))
// Standard Error: 516 // Standard Error: 516
.saturating_add(Weight::from_ref_time(123_629).saturating_mul(p.into())) .saturating_add(Weight::from_parts(123_629, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(165).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 165).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: Council Members (r:1 w:0) /// Storage: Council Members (r:1 w:0)
/// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -164,13 +164,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `873 + m * (64 ±0)` // Measured: `873 + m * (64 ±0)`
// Estimated: `4714 + m * (128 ±0)` // Estimated: `4714 + m * (128 ±0)`
// Minimum execution time: 22_830 nanoseconds. // Minimum execution time: 22_830 nanoseconds.
Weight::from_ref_time(23_632_337) Weight::from_parts(23_632_337, 0)
.saturating_add(Weight::from_proof_size(4714)) .saturating_add(Weight::from_parts(0, 4714))
// Standard Error: 310 // Standard Error: 310
.saturating_add(Weight::from_ref_time(43_607).saturating_mul(m.into())) .saturating_add(Weight::from_parts(43_607, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(128).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(m.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -189,16 +189,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `493 + m * (64 ±0) + p * (36 ±0)` // Measured: `493 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `5361 + m * (260 ±0) + p * (144 ±0)` // Estimated: `5361 + m * (260 ±0) + p * (144 ±0)`
// Minimum execution time: 28_031 nanoseconds. // Minimum execution time: 28_031 nanoseconds.
Weight::from_ref_time(28_174_563) Weight::from_parts(28_174_563, 0)
.saturating_add(Weight::from_proof_size(5361)) .saturating_add(Weight::from_parts(0, 5361))
// Standard Error: 860 // Standard Error: 860
.saturating_add(Weight::from_ref_time(29_198).saturating_mul(m.into())) .saturating_add(Weight::from_parts(29_198, 0).saturating_mul(m.into()))
// Standard Error: 839 // Standard Error: 839
.saturating_add(Weight::from_ref_time(123_119).saturating_mul(p.into())) .saturating_add(Weight::from_parts(123_119, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(260).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 260).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(144).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -219,17 +219,17 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `829 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `829 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `8632 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)` // Estimated: `8632 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)`
// Minimum execution time: 39_531 nanoseconds. // Minimum execution time: 39_531 nanoseconds.
Weight::from_ref_time(42_121_105) Weight::from_parts(42_121_105, 0)
.saturating_add(Weight::from_proof_size(8632)) .saturating_add(Weight::from_parts(0, 8632))
// Standard Error: 132 // Standard Error: 132
.saturating_add(Weight::from_ref_time(1_767).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_767, 0).saturating_mul(b.into()))
// Standard Error: 1_361 // Standard Error: 1_361
.saturating_add(Weight::from_ref_time(151_993).saturating_mul(p.into())) .saturating_add(Weight::from_parts(151_993, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(4).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(264).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 264).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(160).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 160).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -250,16 +250,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `513 + m * (64 ±0) + p * (36 ±0)` // Measured: `513 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `6430 + m * (325 ±0) + p * (180 ±0)` // Estimated: `6430 + m * (325 ±0) + p * (180 ±0)`
// Minimum execution time: 30_738 nanoseconds. // Minimum execution time: 30_738 nanoseconds.
Weight::from_ref_time(31_359_687) Weight::from_parts(31_359_687, 0)
.saturating_add(Weight::from_proof_size(6430)) .saturating_add(Weight::from_parts(0, 6430))
// Standard Error: 445 // Standard Error: 445
.saturating_add(Weight::from_ref_time(27_105).saturating_mul(m.into())) .saturating_add(Weight::from_parts(27_105, 0).saturating_mul(m.into()))
// Standard Error: 434 // Standard Error: 434
.saturating_add(Weight::from_ref_time(119_167).saturating_mul(p.into())) .saturating_add(Weight::from_parts(119_167, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(325).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 325).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: Council Voting (r:1 w:1) /// Storage: Council Voting (r:1 w:1)
/// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Council Voting (max_values: None, max_size: None, mode: Measured)
@@ -282,19 +282,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `849 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `849 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `9900 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)` // Estimated: `9900 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)`
// Minimum execution time: 41_645 nanoseconds. // Minimum execution time: 41_645 nanoseconds.
Weight::from_ref_time(43_504_215) Weight::from_parts(43_504_215, 0)
.saturating_add(Weight::from_proof_size(9900)) .saturating_add(Weight::from_parts(0, 9900))
// Standard Error: 87 // Standard Error: 87
.saturating_add(Weight::from_ref_time(2_337).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_337, 0).saturating_mul(b.into()))
// Standard Error: 928 // Standard Error: 928
.saturating_add(Weight::from_ref_time(21_553).saturating_mul(m.into())) .saturating_add(Weight::from_parts(21_553, 0).saturating_mul(m.into()))
// Standard Error: 905 // Standard Error: 905
.saturating_add(Weight::from_ref_time(148_246).saturating_mul(p.into())) .saturating_add(Weight::from_parts(148_246, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(5).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 5).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(330).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 330).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(200).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 200).saturating_mul(p.into()))
} }
/// Storage: Council Proposals (r:1 w:1) /// Storage: Council Proposals (r:1 w:1)
/// Proof Skipped: Council Proposals (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Council Proposals (max_values: Some(1), max_size: None, mode: Measured)
@@ -309,12 +309,12 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `258 + p * (32 ±0)` // Measured: `258 + p * (32 ±0)`
// Estimated: `1269 + p * (96 ±0)` // Estimated: `1269 + p * (96 ±0)`
// Minimum execution time: 15_758 nanoseconds. // Minimum execution time: 15_758 nanoseconds.
Weight::from_ref_time(17_993_925) Weight::from_parts(17_993_925, 0)
.saturating_add(Weight::from_proof_size(1269)) .saturating_add(Weight::from_parts(0, 1269))
// Standard Error: 504 // Standard Error: 504
.saturating_add(Weight::from_ref_time(111_766).saturating_mul(p.into())) .saturating_add(Weight::from_parts(111_766, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(96).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 96).saturating_mul(p.into()))
} }
} }
@@ -64,18 +64,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `0 + m * (3233 ±0) + p * (3223 ±0)` // Measured: `0 + m * (3233 ±0) + p * (3223 ±0)`
// Estimated: `16342 + m * (7809 ±17) + p * (10238 ±17)` // Estimated: `16342 + m * (7809 ±17) + p * (10238 ±17)`
// Minimum execution time: 18_766 nanoseconds. // Minimum execution time: 18_766 nanoseconds.
Weight::from_ref_time(19_022_000) Weight::from_parts(19_022_000, 0)
.saturating_add(Weight::from_proof_size(16342)) .saturating_add(Weight::from_parts(0, 16342))
// Standard Error: 51_092 // Standard Error: 51_092
.saturating_add(Weight::from_ref_time(5_695_526).saturating_mul(m.into())) .saturating_add(Weight::from_parts(5_695_526, 0).saturating_mul(m.into()))
// Standard Error: 51_092 // Standard Error: 51_092
.saturating_add(Weight::from_ref_time(8_512_445).saturating_mul(p.into())) .saturating_add(Weight::from_parts(8_512_445, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7809).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 7809).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(10238).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 10238).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -88,14 +88,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `173 + m * (32 ±0)` // Measured: `173 + m * (32 ±0)`
// Estimated: `669 + m * (32 ±0)` // Estimated: `669 + m * (32 ±0)`
// Minimum execution time: 17_538 nanoseconds. // Minimum execution time: 17_538 nanoseconds.
Weight::from_ref_time(16_973_296) Weight::from_parts(16_973_296, 0)
.saturating_add(Weight::from_proof_size(669)) .saturating_add(Weight::from_parts(0, 669))
// Standard Error: 19 // Standard Error: 19
.saturating_add(Weight::from_ref_time(1_747).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_747, 0).saturating_mul(b.into()))
// Standard Error: 198 // Standard Error: 198
.saturating_add(Weight::from_ref_time(12_393).saturating_mul(m.into())) .saturating_add(Weight::from_parts(12_393, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -110,14 +110,14 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `173 + m * (32 ±0)` // Measured: `173 + m * (32 ±0)`
// Estimated: `3318 + m * (64 ±0)` // Estimated: `3318 + m * (64 ±0)`
// Minimum execution time: 20_246 nanoseconds. // Minimum execution time: 20_246 nanoseconds.
Weight::from_ref_time(19_210_911) Weight::from_parts(19_210_911, 0)
.saturating_add(Weight::from_proof_size(3318)) .saturating_add(Weight::from_parts(0, 3318))
// Standard Error: 20 // Standard Error: 20
.saturating_add(Weight::from_ref_time(1_695).saturating_mul(b.into())) .saturating_add(Weight::from_parts(1_695, 0).saturating_mul(b.into()))
// Standard Error: 216 // Standard Error: 216
.saturating_add(Weight::from_ref_time(22_896).saturating_mul(m.into())) .saturating_add(Weight::from_parts(22_896, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(Weight::from_proof_size(64).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -140,18 +140,18 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `495 + m * (32 ±0) + p * (36 ±0)` // Measured: `495 + m * (32 ±0) + p * (36 ±0)`
// Estimated: `6050 + m * (165 ±0) + p * (180 ±0)` // Estimated: `6050 + m * (165 ±0) + p * (180 ±0)`
// Minimum execution time: 26_490 nanoseconds. // Minimum execution time: 26_490 nanoseconds.
Weight::from_ref_time(27_228_922) Weight::from_parts(27_228_922, 0)
.saturating_add(Weight::from_proof_size(6050)) .saturating_add(Weight::from_parts(0, 6050))
// Standard Error: 49 // Standard Error: 49
.saturating_add(Weight::from_ref_time(2_669).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_669, 0).saturating_mul(b.into()))
// Standard Error: 518 // Standard Error: 518
.saturating_add(Weight::from_ref_time(18_371).saturating_mul(m.into())) .saturating_add(Weight::from_parts(18_371, 0).saturating_mul(m.into()))
// Standard Error: 512 // Standard Error: 512
.saturating_add(Weight::from_ref_time(124_547).saturating_mul(p.into())) .saturating_add(Weight::from_parts(124_547, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(165).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 165).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Members (r:1 w:0) /// Storage: TechnicalCommittee Members (r:1 w:0)
/// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -164,13 +164,13 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `945 + m * (64 ±0)` // Measured: `945 + m * (64 ±0)`
// Estimated: `4858 + m * (128 ±0)` // Estimated: `4858 + m * (128 ±0)`
// Minimum execution time: 23_895 nanoseconds. // Minimum execution time: 23_895 nanoseconds.
Weight::from_ref_time(24_537_170) Weight::from_parts(24_537_170, 0)
.saturating_add(Weight::from_proof_size(4858)) .saturating_add(Weight::from_parts(0, 4858))
// Standard Error: 283 // Standard Error: 283
.saturating_add(Weight::from_ref_time(44_346).saturating_mul(m.into())) .saturating_add(Weight::from_parts(44_346, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(128).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(m.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -189,16 +189,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `565 + m * (64 ±0) + p * (36 ±0)` // Measured: `565 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `5649 + m * (260 ±0) + p * (144 ±0)` // Estimated: `5649 + m * (260 ±0) + p * (144 ±0)`
// Minimum execution time: 28_841 nanoseconds. // Minimum execution time: 28_841 nanoseconds.
Weight::from_ref_time(29_289_017) Weight::from_parts(29_289_017, 0)
.saturating_add(Weight::from_proof_size(5649)) .saturating_add(Weight::from_parts(0, 5649))
// Standard Error: 519 // Standard Error: 519
.saturating_add(Weight::from_ref_time(26_360).saturating_mul(m.into())) .saturating_add(Weight::from_parts(26_360, 0).saturating_mul(m.into()))
// Standard Error: 506 // Standard Error: 506
.saturating_add(Weight::from_ref_time(121_543).saturating_mul(p.into())) .saturating_add(Weight::from_parts(121_543, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(260).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 260).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(144).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -219,19 +219,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `901 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `901 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `8920 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)` // Estimated: `8920 + b * (4 ±0) + m * (264 ±0) + p * (160 ±0)`
// Minimum execution time: 40_558 nanoseconds. // Minimum execution time: 40_558 nanoseconds.
Weight::from_ref_time(41_766_739) Weight::from_parts(41_766_739, 0)
.saturating_add(Weight::from_proof_size(8920)) .saturating_add(Weight::from_parts(0, 8920))
// Standard Error: 84 // Standard Error: 84
.saturating_add(Weight::from_ref_time(2_174).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_174, 0).saturating_mul(b.into()))
// Standard Error: 896 // Standard Error: 896
.saturating_add(Weight::from_ref_time(21_637).saturating_mul(m.into())) .saturating_add(Weight::from_parts(21_637, 0).saturating_mul(m.into()))
// Standard Error: 873 // Standard Error: 873
.saturating_add(Weight::from_ref_time(147_008).saturating_mul(p.into())) .saturating_add(Weight::from_parts(147_008, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(4).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(264).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 264).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(160).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 160).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -252,16 +252,16 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `585 + m * (64 ±0) + p * (36 ±0)` // Measured: `585 + m * (64 ±0) + p * (36 ±0)`
// Estimated: `6790 + m * (325 ±0) + p * (180 ±0)` // Estimated: `6790 + m * (325 ±0) + p * (180 ±0)`
// Minimum execution time: 31_691 nanoseconds. // Minimum execution time: 31_691 nanoseconds.
Weight::from_ref_time(32_313_064) Weight::from_parts(32_313_064, 0)
.saturating_add(Weight::from_proof_size(6790)) .saturating_add(Weight::from_parts(0, 6790))
// Standard Error: 412 // Standard Error: 412
.saturating_add(Weight::from_ref_time(26_215).saturating_mul(m.into())) .saturating_add(Weight::from_parts(26_215, 0).saturating_mul(m.into()))
// Standard Error: 402 // Standard Error: 402
.saturating_add(Weight::from_ref_time(120_349).saturating_mul(p.into())) .saturating_add(Weight::from_parts(120_349, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(325).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 325).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(180).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 180).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Voting (r:1 w:1) /// Storage: TechnicalCommittee Voting (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured)
@@ -284,19 +284,19 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `921 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Measured: `921 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)`
// Estimated: `10260 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)` // Estimated: `10260 + b * (5 ±0) + m * (330 ±0) + p * (200 ±0)`
// Minimum execution time: 42_982 nanoseconds. // Minimum execution time: 42_982 nanoseconds.
Weight::from_ref_time(44_535_219) Weight::from_parts(44_535_219, 0)
.saturating_add(Weight::from_proof_size(10260)) .saturating_add(Weight::from_parts(0, 10260))
// Standard Error: 83 // Standard Error: 83
.saturating_add(Weight::from_ref_time(2_086).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_086, 0).saturating_mul(b.into()))
// Standard Error: 877 // Standard Error: 877
.saturating_add(Weight::from_ref_time(21_836).saturating_mul(m.into())) .saturating_add(Weight::from_parts(21_836, 0).saturating_mul(m.into()))
// Standard Error: 855 // Standard Error: 855
.saturating_add(Weight::from_ref_time(149_280).saturating_mul(p.into())) .saturating_add(Weight::from_parts(149_280, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(5).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 5).saturating_mul(b.into()))
.saturating_add(Weight::from_proof_size(330).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 330).saturating_mul(m.into()))
.saturating_add(Weight::from_proof_size(200).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 200).saturating_mul(p.into()))
} }
/// Storage: TechnicalCommittee Proposals (r:1 w:1) /// Storage: TechnicalCommittee Proposals (r:1 w:1)
/// Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured)
@@ -311,12 +311,12 @@ impl<T: frame_system::Config> pallet_collective::WeightInfo for WeightInfo<T> {
// Measured: `330 + p * (32 ±0)` // Measured: `330 + p * (32 ±0)`
// Estimated: `1485 + p * (96 ±0)` // Estimated: `1485 + p * (96 ±0)`
// Minimum execution time: 16_623 nanoseconds. // Minimum execution time: 16_623 nanoseconds.
Weight::from_ref_time(18_510_338) Weight::from_parts(18_510_338, 0)
.saturating_add(Weight::from_proof_size(1485)) .saturating_add(Weight::from_parts(0, 1485))
// Standard Error: 454 // Standard Error: 454
.saturating_add(Weight::from_ref_time(113_600).saturating_mul(p.into())) .saturating_add(Weight::from_parts(113_600, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(96).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 96).saturating_mul(p.into()))
} }
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4831` // Measured: `4831`
// Estimated: `23409` // Estimated: `23409`
// Minimum execution time: 36_274 nanoseconds. // Minimum execution time: 36_274 nanoseconds.
Weight::from_ref_time(36_815_000) Weight::from_parts(36_815_000, 0)
.saturating_add(Weight::from_proof_size(23409)) .saturating_add(Weight::from_parts(0, 23409))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3587` // Measured: `3587`
// Estimated: `5705` // Estimated: `5705`
// Minimum execution time: 33_036 nanoseconds. // Minimum execution time: 33_036 nanoseconds.
Weight::from_ref_time(33_555_000) Weight::from_parts(33_555_000, 0)
.saturating_add(Weight::from_proof_size(5705)) .saturating_add(Weight::from_parts(0, 5705))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -86,8 +86,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3532` // Measured: `3532`
// Estimated: `12720` // Estimated: `12720`
// Minimum execution time: 46_200 nanoseconds. // Minimum execution time: 46_200 nanoseconds.
Weight::from_ref_time(46_691_000) Weight::from_parts(46_691_000, 0)
.saturating_add(Weight::from_proof_size(12720)) .saturating_add(Weight::from_parts(0, 12720))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3554` // Measured: `3554`
// Estimated: `12720` // Estimated: `12720`
// Minimum execution time: 46_159 nanoseconds. // Minimum execution time: 46_159 nanoseconds.
Weight::from_ref_time(46_507_000) Weight::from_parts(46_507_000, 0)
.saturating_add(Weight::from_proof_size(12720)) .saturating_add(Weight::from_parts(0, 12720))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -118,8 +118,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `365` // Measured: `365`
// Estimated: `7712` // Estimated: `7712`
// Minimum execution time: 26_963 nanoseconds. // Minimum execution time: 26_963 nanoseconds.
Weight::from_ref_time(27_872_000) Weight::from_parts(27_872_000, 0)
.saturating_add(Weight::from_proof_size(7712)) .saturating_add(Weight::from_parts(0, 7712))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -142,8 +142,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `6003` // Measured: `6003`
// Estimated: `36392` // Estimated: `36392`
// Minimum execution time: 92_685 nanoseconds. // Minimum execution time: 92_685 nanoseconds.
Weight::from_ref_time(93_626_000) Weight::from_parts(93_626_000, 0)
.saturating_add(Weight::from_proof_size(36392)) .saturating_add(Weight::from_parts(0, 36392))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -156,8 +156,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3415` // Measured: `3415`
// Estimated: `6340` // Estimated: `6340`
// Minimum execution time: 14_198 nanoseconds. // Minimum execution time: 14_198 nanoseconds.
Weight::from_ref_time(14_642_000) Weight::from_parts(14_642_000, 0)
.saturating_add(Weight::from_proof_size(6340)) .saturating_add(Weight::from_parts(0, 6340))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -168,8 +168,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_853 nanoseconds. // Minimum execution time: 3_853 nanoseconds.
Weight::from_ref_time(4_020_000) Weight::from_parts(4_020_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy NextExternal (r:0 w:1) /// Storage: Democracy NextExternal (r:0 w:1)
@@ -179,8 +179,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_685 nanoseconds. // Minimum execution time: 3_685 nanoseconds.
Weight::from_ref_time(3_906_000) Weight::from_parts(3_906_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy NextExternal (r:1 w:1) /// Storage: Democracy NextExternal (r:1 w:1)
@@ -196,8 +196,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `3654` // Estimated: `3654`
// Minimum execution time: 28_475 nanoseconds. // Minimum execution time: 28_475 nanoseconds.
Weight::from_ref_time(28_950_000) Weight::from_parts(28_950_000, 0)
.saturating_add(Weight::from_proof_size(3654)) .saturating_add(Weight::from_parts(0, 3654))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -212,8 +212,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `3518` // Measured: `3518`
// Estimated: `8868` // Estimated: `8868`
// Minimum execution time: 33_318 nanoseconds. // Minimum execution time: 33_318 nanoseconds.
Weight::from_ref_time(33_996_000) Weight::from_parts(33_996_000, 0)
.saturating_add(Weight::from_proof_size(8868)) .saturating_add(Weight::from_parts(0, 8868))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -230,8 +230,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `5882` // Measured: `5882`
// Estimated: `28033` // Estimated: `28033`
// Minimum execution time: 75_841 nanoseconds. // Minimum execution time: 75_841 nanoseconds.
Weight::from_ref_time(76_687_000) Weight::from_parts(76_687_000, 0)
.saturating_add(Weight::from_proof_size(28033)) .saturating_add(Weight::from_parts(0, 28033))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -244,8 +244,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `238` // Measured: `238`
// Estimated: `2528` // Estimated: `2528`
// Minimum execution time: 20_201 nanoseconds. // Minimum execution time: 20_201 nanoseconds.
Weight::from_ref_time(20_686_000) Weight::from_parts(20_686_000, 0)
.saturating_add(Weight::from_proof_size(2528)) .saturating_add(Weight::from_parts(0, 2528))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -261,14 +261,14 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `211 + r * (117 ±0)` // Measured: `211 + r * (117 ±0)`
// Estimated: `998 + r * (2676 ±0)` // Estimated: `998 + r * (2676 ±0)`
// Minimum execution time: 7_464 nanoseconds. // Minimum execution time: 7_464 nanoseconds.
Weight::from_ref_time(9_990_560) Weight::from_parts(9_990_560, 0)
.saturating_add(Weight::from_proof_size(998)) .saturating_add(Weight::from_parts(0, 998))
// Standard Error: 5_811 // Standard Error: 5_811
.saturating_add(Weight::from_ref_time(2_791_595).saturating_mul(r.into())) .saturating_add(Weight::from_parts(2_791_595, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy LowestUnbaked (r:1 w:1) /// Storage: Democracy LowestUnbaked (r:1 w:1)
/// Proof: Democracy LowestUnbaked (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Democracy LowestUnbaked (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -288,14 +288,14 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `211 + r * (117 ±0)` // Measured: `211 + r * (117 ±0)`
// Estimated: `19318 + r * (2676 ±0)` // Estimated: `19318 + r * (2676 ±0)`
// Minimum execution time: 9_831 nanoseconds. // Minimum execution time: 9_831 nanoseconds.
Weight::from_ref_time(13_727_388) Weight::from_parts(13_727_388, 0)
.saturating_add(Weight::from_proof_size(19318)) .saturating_add(Weight::from_parts(0, 19318))
// Standard Error: 5_875 // Standard Error: 5_875
.saturating_add(Weight::from_ref_time(2_769_840).saturating_mul(r.into())) .saturating_add(Weight::from_parts(2_769_840, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy VotingOf (r:3 w:3) /// Storage: Democracy VotingOf (r:3 w:3)
/// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen) /// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen)
@@ -309,15 +309,15 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `925 + r * (139 ±0)` // Measured: `925 + r * (139 ±0)`
// Estimated: `22584 + r * (2676 ±0)` // Estimated: `22584 + r * (2676 ±0)`
// Minimum execution time: 39_341 nanoseconds. // Minimum execution time: 39_341 nanoseconds.
Weight::from_ref_time(43_711_147) Weight::from_parts(43_711_147, 0)
.saturating_add(Weight::from_proof_size(22584)) .saturating_add(Weight::from_parts(0, 22584))
// Standard Error: 8_917 // Standard Error: 8_917
.saturating_add(Weight::from_ref_time(3_902_039).saturating_mul(r.into())) .saturating_add(Weight::from_parts(3_902_039, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy VotingOf (r:2 w:2) /// Storage: Democracy VotingOf (r:2 w:2)
/// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen) /// Proof: Democracy VotingOf (max_values: None, max_size: Some(3795), added: 6270, mode: MaxEncodedLen)
@@ -329,15 +329,15 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `524 + r * (139 ±0)` // Measured: `524 + r * (139 ±0)`
// Estimated: `12540 + r * (2676 ±0)` // Estimated: `12540 + r * (2676 ±0)`
// Minimum execution time: 21_863 nanoseconds. // Minimum execution time: 21_863 nanoseconds.
Weight::from_ref_time(24_086_661) Weight::from_parts(24_086_661, 0)
.saturating_add(Weight::from_proof_size(12540)) .saturating_add(Weight::from_parts(0, 12540))
// Standard Error: 6_125 // Standard Error: 6_125
.saturating_add(Weight::from_ref_time(3_868_954).saturating_mul(r.into())) .saturating_add(Weight::from_parts(3_868_954, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
.saturating_add(Weight::from_proof_size(2676).saturating_mul(r.into())) .saturating_add(Weight::from_parts(0, 2676).saturating_mul(r.into()))
} }
/// Storage: Democracy PublicProps (r:0 w:1) /// Storage: Democracy PublicProps (r:0 w:1)
/// Proof: Democracy PublicProps (max_values: Some(1), max_size: Some(16702), added: 17197, mode: MaxEncodedLen) /// Proof: Democracy PublicProps (max_values: Some(1), max_size: Some(16702), added: 17197, mode: MaxEncodedLen)
@@ -346,8 +346,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_222 nanoseconds. // Minimum execution time: 3_222 nanoseconds.
Weight::from_ref_time(3_403_000) Weight::from_parts(3_403_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Democracy VotingOf (r:1 w:1) /// Storage: Democracy VotingOf (r:1 w:1)
@@ -362,10 +362,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `594` // Measured: `594`
// Estimated: `12647` // Estimated: `12647`
// Minimum execution time: 21_776 nanoseconds. // Minimum execution time: 21_776 nanoseconds.
Weight::from_ref_time(27_468_612) Weight::from_parts(27_468_612, 0)
.saturating_add(Weight::from_proof_size(12647)) .saturating_add(Weight::from_parts(0, 12647))
// Standard Error: 1_284 // Standard Error: 1_284
.saturating_add(Weight::from_ref_time(22_061).saturating_mul(r.into())) .saturating_add(Weight::from_parts(22_061, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -381,10 +381,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `595 + r * (22 ±0)` // Measured: `595 + r * (22 ±0)`
// Estimated: `12647` // Estimated: `12647`
// Minimum execution time: 26_013 nanoseconds. // Minimum execution time: 26_013 nanoseconds.
Weight::from_ref_time(27_057_379) Weight::from_parts(27_057_379, 0)
.saturating_add(Weight::from_proof_size(12647)) .saturating_add(Weight::from_parts(0, 12647))
// Standard Error: 553 // Standard Error: 553
.saturating_add(Weight::from_ref_time(65_983).saturating_mul(r.into())) .saturating_add(Weight::from_parts(65_983, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -398,10 +398,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `758 + r * (26 ±0)` // Measured: `758 + r * (26 ±0)`
// Estimated: `8946` // Estimated: `8946`
// Minimum execution time: 16_233 nanoseconds. // Minimum execution time: 16_233 nanoseconds.
Weight::from_ref_time(19_066_378) Weight::from_parts(19_066_378, 0)
.saturating_add(Weight::from_proof_size(8946)) .saturating_add(Weight::from_parts(0, 8946))
// Standard Error: 948 // Standard Error: 948
.saturating_add(Weight::from_ref_time(76_609).saturating_mul(r.into())) .saturating_add(Weight::from_parts(76_609, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -415,10 +415,10 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `758 + r * (26 ±0)` // Measured: `758 + r * (26 ±0)`
// Estimated: `8946` // Estimated: `8946`
// Minimum execution time: 16_824 nanoseconds. // Minimum execution time: 16_824 nanoseconds.
Weight::from_ref_time(19_125_896) Weight::from_parts(19_125_896, 0)
.saturating_add(Weight::from_proof_size(8946)) .saturating_add(Weight::from_parts(0, 8946))
// Standard Error: 1_009 // Standard Error: 1_009
.saturating_add(Weight::from_ref_time(75_921).saturating_mul(r.into())) .saturating_add(Weight::from_parts(75_921, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -433,8 +433,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `323` // Measured: `323`
// Estimated: `3193` // Estimated: `3193`
// Minimum execution time: 18_945 nanoseconds. // Minimum execution time: 18_945 nanoseconds.
Weight::from_ref_time(19_439_000) Weight::from_parts(19_439_000, 0)
.saturating_add(Weight::from_proof_size(3193)) .saturating_add(Weight::from_parts(0, 3193))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -447,8 +447,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `3155` // Estimated: `3155`
// Minimum execution time: 17_978 nanoseconds. // Minimum execution time: 17_978 nanoseconds.
Weight::from_ref_time(18_271_000) Weight::from_parts(18_271_000, 0)
.saturating_add(Weight::from_proof_size(3155)) .saturating_add(Weight::from_parts(0, 3155))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -463,8 +463,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4886` // Measured: `4886`
// Estimated: `19763` // Estimated: `19763`
// Minimum execution time: 33_654 nanoseconds. // Minimum execution time: 33_654 nanoseconds.
Weight::from_ref_time(34_056_000) Weight::from_parts(34_056_000, 0)
.saturating_add(Weight::from_proof_size(19763)) .saturating_add(Weight::from_parts(0, 19763))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -477,8 +477,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `4820` // Measured: `4820`
// Estimated: `19725` // Estimated: `19725`
// Minimum execution time: 31_879 nanoseconds. // Minimum execution time: 31_879 nanoseconds.
Weight::from_ref_time(32_297_000) Weight::from_parts(32_297_000, 0)
.saturating_add(Weight::from_proof_size(19725)) .saturating_add(Weight::from_parts(0, 19725))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -491,8 +491,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 15_166 nanoseconds. // Minimum execution time: 15_166 nanoseconds.
Weight::from_ref_time(15_391_000) Weight::from_parts(15_391_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -505,8 +505,8 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Measured: `269` // Measured: `269`
// Estimated: `5204` // Estimated: `5204`
// Minimum execution time: 19_417 nanoseconds. // Minimum execution time: 19_417 nanoseconds.
Weight::from_ref_time(19_739_000) Weight::from_parts(19_739_000, 0)
.saturating_add(Weight::from_proof_size(5204)) .saturating_add(Weight::from_parts(0, 5204))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `993` // Measured: `993`
// Estimated: `6982` // Estimated: `6982`
// Minimum execution time: 19_584 nanoseconds. // Minimum execution time: 19_584 nanoseconds.
Weight::from_ref_time(20_005_000) Weight::from_parts(20_005_000, 0)
.saturating_add(Weight::from_proof_size(6982)) .saturating_add(Weight::from_parts(0, 6982))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
} }
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0) /// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
@@ -79,8 +79,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `114` // Measured: `114`
// Estimated: `1218` // Estimated: `1218`
// Minimum execution time: 13_857 nanoseconds. // Minimum execution time: 13_857 nanoseconds.
Weight::from_ref_time(14_104_000) Weight::from_parts(14_104_000, 0)
.saturating_add(Weight::from_proof_size(1218)) .saturating_add(Weight::from_parts(0, 1218))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -93,8 +93,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `114` // Measured: `114`
// Estimated: `1218` // Estimated: `1218`
// Minimum execution time: 15_347 nanoseconds. // Minimum execution time: 15_347 nanoseconds.
Weight::from_ref_time(15_771_000) Weight::from_parts(15_771_000, 0)
.saturating_add(Weight::from_proof_size(1218)) .saturating_add(Weight::from_parts(0, 1218))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -107,8 +107,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206` // Measured: `206`
// Estimated: `2809` // Estimated: `2809`
// Minimum execution time: 26_315 nanoseconds. // Minimum execution time: 26_315 nanoseconds.
Weight::from_ref_time(26_931_000) Weight::from_parts(26_931_000, 0)
.saturating_add(Weight::from_proof_size(2809)) .saturating_add(Weight::from_parts(0, 2809))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206` // Measured: `206`
// Estimated: `2603` // Estimated: `2603`
// Minimum execution time: 18_524 nanoseconds. // Minimum execution time: 18_524 nanoseconds.
Weight::from_ref_time(18_829_000) Weight::from_parts(18_829_000, 0)
.saturating_add(Weight::from_proof_size(2603)) .saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -137,10 +137,10 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 453_935 nanoseconds. // Minimum execution time: 453_935 nanoseconds.
Weight::from_ref_time(468_681_000) Weight::from_parts(468_681_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_604 // Standard Error: 2_604
.saturating_add(Weight::from_ref_time(271_046).saturating_mul(v.into())) .saturating_add(Weight::from_parts(271_046, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1) /// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
@@ -170,16 +170,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `369 + a * (768 ±0) + d * (48 ±0)` // Measured: `369 + a * (768 ±0) + d * (48 ±0)`
// Estimated: `10092 + a * (6912 ±0) + d * (441 ±0)` // Estimated: `10092 + a * (6912 ±0) + d * (441 ±0)`
// Minimum execution time: 289_345 nanoseconds. // Minimum execution time: 289_345 nanoseconds.
Weight::from_ref_time(73_555_210) Weight::from_parts(73_555_210, 0)
.saturating_add(Weight::from_proof_size(10092)) .saturating_add(Weight::from_parts(0, 10092))
// Standard Error: 4_786 // Standard Error: 4_786
.saturating_add(Weight::from_ref_time(335_868).saturating_mul(a.into())) .saturating_add(Weight::from_parts(335_868, 0).saturating_mul(a.into()))
// Standard Error: 7_174 // Standard Error: 7_174
.saturating_add(Weight::from_ref_time(163_779).saturating_mul(d.into())) .saturating_add(Weight::from_parts(163_779, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(9)) .saturating_add(T::DbWeight::get().writes(9))
.saturating_add(Weight::from_proof_size(6912).saturating_mul(a.into())) .saturating_add(Weight::from_parts(0, 6912).saturating_mul(a.into()))
.saturating_add(Weight::from_proof_size(441).saturating_mul(d.into())) .saturating_add(Weight::from_parts(0, 441).saturating_mul(d.into()))
} }
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0) /// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
@@ -198,8 +198,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `1236` // Measured: `1236`
// Estimated: `8671` // Estimated: `8671`
// Minimum execution time: 43_960 nanoseconds. // Minimum execution time: 43_960 nanoseconds.
Weight::from_ref_time(44_574_000) Weight::from_parts(44_574_000, 0)
.saturating_add(Weight::from_proof_size(8671)) .saturating_add(Weight::from_parts(0, 8671))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -226,16 +226,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `251 + v * (553 ±0) + t * (32 ±0)` // Measured: `251 + v * (553 ±0) + t * (32 ±0)`
// Estimated: `5222 + v * (3871 ±0) + t * (224 ±0)` // Estimated: `5222 + v * (3871 ±0) + t * (224 ±0)`
// Minimum execution time: 5_167_319 nanoseconds. // Minimum execution time: 5_167_319 nanoseconds.
Weight::from_ref_time(5_178_240_000) Weight::from_parts(5_178_240_000, 0)
.saturating_add(Weight::from_proof_size(5222)) .saturating_add(Weight::from_parts(0, 5222))
// Standard Error: 15_890 // Standard Error: 15_890
.saturating_add(Weight::from_ref_time(84_855).saturating_mul(v.into())) .saturating_add(Weight::from_parts(84_855, 0).saturating_mul(v.into()))
// Standard Error: 47_089 // Standard Error: 47_089
.saturating_add(Weight::from_ref_time(4_978_618).saturating_mul(a.into())) .saturating_add(Weight::from_parts(4_978_618, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(3871).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 3871).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(224).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 224).saturating_mul(t.into()))
} }
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0) /// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
@@ -254,14 +254,14 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `226 + v * (553 ±0) + t * (32 ±0)` // Measured: `226 + v * (553 ±0) + t * (32 ±0)`
// Estimated: `2884 + v * (2212 ±0) + t * (128 ±0)` // Estimated: `2884 + v * (2212 ±0) + t * (128 ±0)`
// Minimum execution time: 4_351_373 nanoseconds. // Minimum execution time: 4_351_373 nanoseconds.
Weight::from_ref_time(4_374_601_000) Weight::from_parts(4_374_601_000, 0)
.saturating_add(Weight::from_proof_size(2884)) .saturating_add(Weight::from_parts(0, 2884))
// Standard Error: 13_786 // Standard Error: 13_786
.saturating_add(Weight::from_ref_time(192_502).saturating_mul(v.into())) .saturating_add(Weight::from_parts(192_502, 0).saturating_mul(v.into()))
// Standard Error: 40_854 // Standard Error: 40_854
.saturating_add(Weight::from_ref_time(3_698_526).saturating_mul(a.into())) .saturating_add(Weight::from_parts(3_698_526, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(Weight::from_proof_size(2212).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 2212).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(128).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 128).saturating_mul(t.into()))
} }
} }
@@ -61,13 +61,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `465 + v * (80 ±0)` // Measured: `465 + v * (80 ±0)`
// Estimated: `9590 + v * (320 ±0)` // Estimated: `9590 + v * (320 ±0)`
// Minimum execution time: 27_938 nanoseconds. // Minimum execution time: 27_938 nanoseconds.
Weight::from_ref_time(29_100_110) Weight::from_parts(29_100_110, 0)
.saturating_add(Weight::from_proof_size(9590)) .saturating_add(Weight::from_parts(0, 9590))
// Standard Error: 6_600 // Standard Error: 6_600
.saturating_add(Weight::from_ref_time(157_595).saturating_mul(v.into())) .saturating_add(Weight::from_parts(157_595, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:0) /// Storage: PhragmenElection Candidates (r:1 w:0)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -85,13 +85,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `433 + v * (80 ±0)` // Measured: `433 + v * (80 ±0)`
// Estimated: `9462 + v * (320 ±0)` // Estimated: `9462 + v * (320 ±0)`
// Minimum execution time: 38_534 nanoseconds. // Minimum execution time: 38_534 nanoseconds.
Weight::from_ref_time(39_643_343) Weight::from_parts(39_643_343, 0)
.saturating_add(Weight::from_proof_size(9462)) .saturating_add(Weight::from_parts(0, 9462))
// Standard Error: 9_959 // Standard Error: 9_959
.saturating_add(Weight::from_ref_time(126_648).saturating_mul(v.into())) .saturating_add(Weight::from_parts(126_648, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:0) /// Storage: PhragmenElection Candidates (r:1 w:0)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -109,13 +109,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `465 + v * (80 ±0)` // Measured: `465 + v * (80 ±0)`
// Estimated: `9590 + v * (320 ±0)` // Estimated: `9590 + v * (320 ±0)`
// Minimum execution time: 38_040 nanoseconds. // Minimum execution time: 38_040 nanoseconds.
Weight::from_ref_time(39_536_618) Weight::from_parts(39_536_618, 0)
.saturating_add(Weight::from_proof_size(9590)) .saturating_add(Weight::from_parts(0, 9590))
// Standard Error: 11_329 // Standard Error: 11_329
.saturating_add(Weight::from_ref_time(149_545).saturating_mul(v.into())) .saturating_add(Weight::from_parts(149_545, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(320).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 320).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Voting (r:1 w:1) /// Storage: PhragmenElection Voting (r:1 w:1)
/// Proof Skipped: PhragmenElection Voting (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Voting (max_values: None, max_size: None, mode: Measured)
@@ -126,8 +126,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `955` // Measured: `955`
// Estimated: `7204` // Estimated: `7204`
// Minimum execution time: 33_834 nanoseconds. // Minimum execution time: 33_834 nanoseconds.
Weight::from_ref_time(34_319_000) Weight::from_parts(34_319_000, 0)
.saturating_add(Weight::from_proof_size(7204)) .saturating_add(Weight::from_parts(0, 7204))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -143,13 +143,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `2485 + c * (48 ±0)` // Measured: `2485 + c * (48 ±0)`
// Estimated: `8934 + c * (144 ±0)` // Estimated: `8934 + c * (144 ±0)`
// Minimum execution time: 29_549 nanoseconds. // Minimum execution time: 29_549 nanoseconds.
Weight::from_ref_time(22_842_922) Weight::from_parts(22_842_922, 0)
.saturating_add(Weight::from_proof_size(8934)) .saturating_add(Weight::from_parts(0, 8934))
// Standard Error: 850 // Standard Error: 850
.saturating_add(Weight::from_ref_time(86_966).saturating_mul(c.into())) .saturating_add(Weight::from_parts(86_966, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(144).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 144).saturating_mul(c.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:1) /// Storage: PhragmenElection Candidates (r:1 w:1)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -159,13 +159,13 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `314 + c * (48 ±0)` // Measured: `314 + c * (48 ±0)`
// Estimated: `796 + c * (48 ±0)` // Estimated: `796 + c * (48 ±0)`
// Minimum execution time: 24_951 nanoseconds. // Minimum execution time: 24_951 nanoseconds.
Weight::from_ref_time(18_393_117) Weight::from_parts(18_393_117, 0)
.saturating_add(Weight::from_proof_size(796)) .saturating_add(Weight::from_parts(0, 796))
// Standard Error: 887 // Standard Error: 887
.saturating_add(Weight::from_ref_time(58_381).saturating_mul(c.into())) .saturating_add(Weight::from_parts(58_381, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(48).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 48).saturating_mul(c.into()))
} }
/// Storage: PhragmenElection Members (r:1 w:1) /// Storage: PhragmenElection Members (r:1 w:1)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -182,8 +182,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `2692` // Measured: `2692`
// Estimated: `15440` // Estimated: `15440`
// Minimum execution time: 42_947 nanoseconds. // Minimum execution time: 42_947 nanoseconds.
Weight::from_ref_time(43_654_000) Weight::from_parts(43_654_000, 0)
.saturating_add(Weight::from_proof_size(15440)) .saturating_add(Weight::from_parts(0, 15440))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -194,8 +194,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `1806` // Measured: `1806`
// Estimated: `2301` // Estimated: `2301`
// Minimum execution time: 27_864 nanoseconds. // Minimum execution time: 27_864 nanoseconds.
Weight::from_ref_time(28_247_000) Weight::from_parts(28_247_000, 0)
.saturating_add(Weight::from_proof_size(2301)) .saturating_add(Weight::from_parts(0, 2301))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -206,8 +206,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_000_000_000 nanoseconds. // Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000) Weight::from_parts(2_000_000_000_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: PhragmenElection Members (r:1 w:1) /// Storage: PhragmenElection Members (r:1 w:1)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -226,8 +226,8 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `2692` // Measured: `2692`
// Estimated: `18043` // Estimated: `18043`
// Minimum execution time: 58_914 nanoseconds. // Minimum execution time: 58_914 nanoseconds.
Weight::from_ref_time(60_596_000) Weight::from_parts(60_596_000, 0)
.saturating_add(Weight::from_proof_size(18043)) .saturating_add(Weight::from_parts(0, 18043))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -250,14 +250,14 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `36028 + v * (872 ±0)` // Measured: `36028 + v * (872 ±0)`
// Estimated: `149172 + v * (12340 ±0)` // Estimated: `149172 + v * (12340 ±0)`
// Minimum execution time: 339_754_864 nanoseconds. // Minimum execution time: 339_754_864 nanoseconds.
Weight::from_ref_time(340_507_844_000) Weight::from_parts(340_507_844_000, 0)
.saturating_add(Weight::from_proof_size(149172)) .saturating_add(Weight::from_parts(0, 149172))
// Standard Error: 288_237 // Standard Error: 288_237
.saturating_add(Weight::from_ref_time(41_595_186).saturating_mul(v.into())) .saturating_add(Weight::from_parts(41_595_186, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
.saturating_add(Weight::from_proof_size(12340).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 12340).saturating_mul(v.into()))
} }
/// Storage: PhragmenElection Candidates (r:1 w:1) /// Storage: PhragmenElection Candidates (r:1 w:1)
/// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Candidates (max_values: Some(1), max_size: None, mode: Measured)
@@ -285,19 +285,19 @@ impl<T: frame_system::Config> pallet_elections_phragmen::WeightInfo for WeightIn
// Measured: `0 + v * (639 ±0) + e * (28 ±0)` // Measured: `0 + v * (639 ±0) + e * (28 ±0)`
// Estimated: `5352462 + c * (2560 ±0) + v * (5714 ±4) + e * (123 ±0)` // Estimated: `5352462 + c * (2560 ±0) + v * (5714 ±4) + e * (123 ±0)`
// Minimum execution time: 35_362_437 nanoseconds. // Minimum execution time: 35_362_437 nanoseconds.
Weight::from_ref_time(35_569_288_000) Weight::from_parts(35_569_288_000, 0)
.saturating_add(Weight::from_proof_size(5352462)) .saturating_add(Weight::from_parts(0, 5352462))
// Standard Error: 456_165 // Standard Error: 456_165
.saturating_add(Weight::from_ref_time(40_481_430).saturating_mul(v.into())) .saturating_add(Weight::from_parts(40_481_430, 0).saturating_mul(v.into()))
// Standard Error: 29_273 // Standard Error: 29_273
.saturating_add(Weight::from_ref_time(2_019_337).saturating_mul(e.into())) .saturating_add(Weight::from_parts(2_019_337, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(269)) .saturating_add(T::DbWeight::get().reads(269))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(2560).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 2560).saturating_mul(c.into()))
.saturating_add(Weight::from_proof_size(5714).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 5714).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(123).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 123).saturating_mul(e.into()))
} }
} }
@@ -79,15 +79,15 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1127 + b * (391 ±0)` // Measured: `1127 + b * (391 ±0)`
// Estimated: `6126 + b * (17736 ±0)` // Estimated: `6126 + b * (17736 ±0)`
// Minimum execution time: 78_437 nanoseconds. // Minimum execution time: 78_437 nanoseconds.
Weight::from_ref_time(41_049_087) Weight::from_parts(41_049_087, 0)
.saturating_add(Weight::from_proof_size(6126)) .saturating_add(Weight::from_parts(0, 6126))
// Standard Error: 70_691 // Standard Error: 70_691
.saturating_add(Weight::from_ref_time(42_011_037).saturating_mul(b.into())) .saturating_add(Weight::from_parts(42_011_037, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_proof_size(17736).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 17736).saturating_mul(b.into()))
} }
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0) /// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -110,17 +110,17 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1481 + v * (19543 ±0) + b * (48 ±0)` // Measured: `1481 + v * (19543 ±0) + b * (48 ±0)`
// Estimated: `9009 + v * (41563 ±0) + b * (104 ±0)` // Estimated: `9009 + v * (41563 ±0) + b * (104 ±0)`
// Minimum execution time: 697_307 nanoseconds. // Minimum execution time: 697_307 nanoseconds.
Weight::from_ref_time(698_793_000) Weight::from_parts(698_793_000, 0)
.saturating_add(Weight::from_proof_size(9009)) .saturating_add(Weight::from_parts(0, 9009))
// Standard Error: 6_876_720 // Standard Error: 6_876_720
.saturating_add(Weight::from_ref_time(229_912_763).saturating_mul(v.into())) .saturating_add(Weight::from_parts(229_912_763, 0).saturating_mul(v.into()))
// Standard Error: 110_350_707 // Standard Error: 110_350_707
.saturating_add(Weight::from_ref_time(3_429_229_662).saturating_mul(b.into())) .saturating_add(Weight::from_parts(3_429_229_662, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(41563).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 41563).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(104).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 104).saturating_mul(b.into()))
} }
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0) /// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `2117` // Measured: `2117`
// Estimated: `29662` // Estimated: `29662`
// Minimum execution time: 118_076 nanoseconds. // Minimum execution time: 118_076 nanoseconds.
Weight::from_ref_time(119_160_000) Weight::from_parts(119_160_000, 0)
.saturating_add(Weight::from_proof_size(29662)) .saturating_add(Weight::from_parts(0, 29662))
.saturating_add(T::DbWeight::get().reads(15)) .saturating_add(T::DbWeight::get().reads(15))
.saturating_add(T::DbWeight::get().writes(10)) .saturating_add(T::DbWeight::get().writes(10))
} }
@@ -175,8 +175,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1220` // Measured: `1220`
// Estimated: `8476` // Estimated: `8476`
// Minimum execution time: 41_749 nanoseconds. // Minimum execution time: 41_749 nanoseconds.
Weight::from_ref_time(42_129_000) Weight::from_parts(42_129_000, 0)
.saturating_add(Weight::from_proof_size(8476)) .saturating_add(Weight::from_parts(0, 8476))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -187,8 +187,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_839 nanoseconds. // Minimum execution time: 2_839 nanoseconds.
Weight::from_ref_time(2_959_000) Weight::from_parts(2_959_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `64 + r * (57 ±0)` // Measured: `64 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 12_682 nanoseconds. // Minimum execution time: 12_682 nanoseconds.
Weight::from_ref_time(13_076_717) Weight::from_parts(13_076_717, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_382 // Standard Error: 1_382
.saturating_add(Weight::from_ref_time(89_437).saturating_mul(r.into())) .saturating_add(Weight::from_parts(89_437, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -69,12 +69,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `474 + r * (5 ±0)` // Measured: `474 + r * (5 ±0)`
// Estimated: `10013` // Estimated: `10013`
// Minimum execution time: 29_982 nanoseconds. // Minimum execution time: 29_982 nanoseconds.
Weight::from_ref_time(29_717_407) Weight::from_parts(29_717_407, 0)
.saturating_add(Weight::from_proof_size(10013)) .saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 4_183 // Standard Error: 4_183
.saturating_add(Weight::from_ref_time(57_038).saturating_mul(r.into())) .saturating_add(Weight::from_parts(57_038, 0).saturating_mul(r.into()))
// Standard Error: 816 // Standard Error: 816
.saturating_add(Weight::from_ref_time(456_393).saturating_mul(x.into())) .saturating_add(Weight::from_parts(456_393, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -90,15 +90,15 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `101` // Measured: `101`
// Estimated: `15746 + s * (2589 ±0)` // Estimated: `15746 + s * (2589 ±0)`
// Minimum execution time: 9_055 nanoseconds. // Minimum execution time: 9_055 nanoseconds.
Weight::from_ref_time(22_730_335) Weight::from_parts(22_730_335, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 4_382 // Standard Error: 4_382
.saturating_add(Weight::from_ref_time(2_905_181).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_905_181, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(2589).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into()))
} }
/// Storage: Identity IdentityOf (r:1 w:0) /// Storage: Identity IdentityOf (r:1 w:0)
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen) /// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
@@ -112,10 +112,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `226 + p * (32 ±0)` // Measured: `226 + p * (32 ±0)`
// Estimated: `15746` // Estimated: `15746`
// Minimum execution time: 8_851 nanoseconds. // Minimum execution time: 8_851 nanoseconds.
Weight::from_ref_time(21_922_814) Weight::from_parts(21_922_814, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 4_280 // Standard Error: 4_280
.saturating_add(Weight::from_ref_time(1_155_221).saturating_mul(p.into())) .saturating_add(Weight::from_parts(1_155_221, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
@@ -134,14 +134,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `533 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Measured: `533 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `15746` // Estimated: `15746`
// Minimum execution time: 50_824 nanoseconds. // Minimum execution time: 50_824 nanoseconds.
Weight::from_ref_time(30_149_529) Weight::from_parts(30_149_529, 0)
.saturating_add(Weight::from_proof_size(15746)) .saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 5_159 // Standard Error: 5_159
.saturating_add(Weight::from_ref_time(4_837).saturating_mul(r.into())) .saturating_add(Weight::from_parts(4_837, 0).saturating_mul(r.into()))
// Standard Error: 1_007 // Standard Error: 1_007
.saturating_add(Weight::from_ref_time(1_105_370).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_105_370, 0).saturating_mul(s.into()))
// Standard Error: 1_007 // Standard Error: 1_007
.saturating_add(Weight::from_ref_time(234_248).saturating_mul(x.into())) .saturating_add(Weight::from_parts(234_248, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -157,12 +157,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `431 + r * (57 ±0) + x * (66 ±0)` // Measured: `431 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649` // Estimated: `11649`
// Minimum execution time: 30_853 nanoseconds. // Minimum execution time: 30_853 nanoseconds.
Weight::from_ref_time(29_526_216) Weight::from_parts(29_526_216, 0)
.saturating_add(Weight::from_proof_size(11649)) .saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 4_586 // Standard Error: 4_586
.saturating_add(Weight::from_ref_time(135_813).saturating_mul(r.into())) .saturating_add(Weight::from_parts(135_813, 0).saturating_mul(r.into()))
// Standard Error: 894 // Standard Error: 894
.saturating_add(Weight::from_ref_time(481_439).saturating_mul(x.into())) .saturating_add(Weight::from_parts(481_439, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -175,12 +175,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `430 + x * (66 ±0)` // Measured: `430 + x * (66 ±0)`
// Estimated: `10013` // Estimated: `10013`
// Minimum execution time: 27_424 nanoseconds. // Minimum execution time: 27_424 nanoseconds.
Weight::from_ref_time(26_944_307) Weight::from_parts(26_944_307, 0)
.saturating_add(Weight::from_proof_size(10013)) .saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 4_245 // Standard Error: 4_245
.saturating_add(Weight::from_ref_time(78_592).saturating_mul(r.into())) .saturating_add(Weight::from_parts(78_592, 0).saturating_mul(r.into()))
// Standard Error: 828 // Standard Error: 828
.saturating_add(Weight::from_ref_time(474_345).saturating_mul(x.into())) .saturating_add(Weight::from_parts(474_345, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 7_641 nanoseconds. // Minimum execution time: 7_641 nanoseconds.
Weight::from_ref_time(7_977_418) Weight::from_parts(7_977_418, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_439 // Standard Error: 1_439
.saturating_add(Weight::from_ref_time(70_951).saturating_mul(r.into())) .saturating_add(Weight::from_parts(70_951, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -207,10 +207,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 7_046 nanoseconds. // Minimum execution time: 7_046 nanoseconds.
Weight::from_ref_time(7_698_895) Weight::from_parts(7_698_895, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_555 // Standard Error: 1_555
.saturating_add(Weight::from_ref_time(90_524).saturating_mul(r.into())) .saturating_add(Weight::from_parts(90_524, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -222,10 +222,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)` // Measured: `121 + r * (57 ±0)`
// Estimated: `1636` // Estimated: `1636`
// Minimum execution time: 7_213 nanoseconds. // Minimum execution time: 7_213 nanoseconds.
Weight::from_ref_time(7_839_570) Weight::from_parts(7_839_570, 0)
.saturating_add(Weight::from_proof_size(1636)) .saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_489 // Standard Error: 1_489
.saturating_add(Weight::from_ref_time(90_081).saturating_mul(r.into())) .saturating_add(Weight::from_parts(90_081, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -240,12 +240,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `509 + r * (57 ±0) + x * (66 ±0)` // Measured: `509 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649` // Estimated: `11649`
// Minimum execution time: 23_745 nanoseconds. // Minimum execution time: 23_745 nanoseconds.
Weight::from_ref_time(23_813_603) Weight::from_parts(23_813_603, 0)
.saturating_add(Weight::from_proof_size(11649)) .saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 5_539 // Standard Error: 5_539
.saturating_add(Weight::from_ref_time(60_572).saturating_mul(r.into())) .saturating_add(Weight::from_parts(60_572, 0).saturating_mul(r.into()))
// Standard Error: 1_024 // Standard Error: 1_024
.saturating_add(Weight::from_ref_time(767_514).saturating_mul(x.into())) .saturating_add(Weight::from_parts(767_514, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -265,14 +265,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `772 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Measured: `772 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `18349` // Estimated: `18349`
// Minimum execution time: 64_265 nanoseconds. // Minimum execution time: 64_265 nanoseconds.
Weight::from_ref_time(44_251_564) Weight::from_parts(44_251_564, 0)
.saturating_add(Weight::from_proof_size(18349)) .saturating_add(Weight::from_parts(0, 18349))
// Standard Error: 8_578 // Standard Error: 8_578
.saturating_add(Weight::from_ref_time(21_520).saturating_mul(r.into())) .saturating_add(Weight::from_parts(21_520, 0).saturating_mul(r.into()))
// Standard Error: 1_675 // Standard Error: 1_675
.saturating_add(Weight::from_ref_time(1_132_823).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_132_823, 0).saturating_mul(s.into()))
// Standard Error: 1_675 // Standard Error: 1_675
.saturating_add(Weight::from_ref_time(230_601).saturating_mul(x.into())) .saturating_add(Weight::from_parts(230_601, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -289,10 +289,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `507 + s * (36 ±0)` // Measured: `507 + s * (36 ±0)`
// Estimated: `18335` // Estimated: `18335`
// Minimum execution time: 26_517 nanoseconds. // Minimum execution time: 26_517 nanoseconds.
Weight::from_ref_time(32_015_136) Weight::from_parts(32_015_136, 0)
.saturating_add(Weight::from_proof_size(18335)) .saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 1_554 // Standard Error: 1_554
.saturating_add(Weight::from_ref_time(63_492).saturating_mul(s.into())) .saturating_add(Weight::from_parts(63_492, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -306,10 +306,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `623 + s * (3 ±0)` // Measured: `623 + s * (3 ±0)`
// Estimated: `12602` // Estimated: `12602`
// Minimum execution time: 12_348 nanoseconds. // Minimum execution time: 12_348 nanoseconds.
Weight::from_ref_time(14_657_120) Weight::from_parts(14_657_120, 0)
.saturating_add(Weight::from_proof_size(12602)) .saturating_add(Weight::from_parts(0, 12602))
// Standard Error: 688 // Standard Error: 688
.saturating_add(Weight::from_ref_time(16_667).saturating_mul(s.into())) .saturating_add(Weight::from_parts(16_667, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -325,10 +325,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `702 + s * (35 ±0)` // Measured: `702 + s * (35 ±0)`
// Estimated: `18335` // Estimated: `18335`
// Minimum execution time: 30_951 nanoseconds. // Minimum execution time: 30_951 nanoseconds.
Weight::from_ref_time(33_549_692) Weight::from_parts(33_549_692, 0)
.saturating_add(Weight::from_proof_size(18335)) .saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 984 // Standard Error: 984
.saturating_add(Weight::from_ref_time(53_468).saturating_mul(s.into())) .saturating_add(Weight::from_parts(53_468, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -342,10 +342,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `628 + s * (37 ±0)` // Measured: `628 + s * (37 ±0)`
// Estimated: `8322` // Estimated: `8322`
// Minimum execution time: 20_829 nanoseconds. // Minimum execution time: 20_829 nanoseconds.
Weight::from_ref_time(23_002_413) Weight::from_parts(23_002_413, 0)
.saturating_add(Weight::from_proof_size(8322)) .saturating_add(Weight::from_parts(0, 8322))
// Standard Error: 993 // Standard Error: 993
.saturating_add(Weight::from_ref_time(57_051).saturating_mul(s.into())) .saturating_add(Weight::from_parts(57_051, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -62,15 +62,15 @@ impl<T: frame_system::Config> pallet_im_online::WeightInfo for WeightInfo<T> {
// Measured: `425 + k * (32 ±0)` // Measured: `425 + k * (32 ±0)`
// Estimated: `10345844 + k * (64 ±0) + e * (25 ±0)` // Estimated: `10345844 + k * (64 ±0) + e * (25 ±0)`
// Minimum execution time: 97_067 nanoseconds. // Minimum execution time: 97_067 nanoseconds.
Weight::from_ref_time(75_734_166) Weight::from_parts(75_734_166, 0)
.saturating_add(Weight::from_proof_size(10345844)) .saturating_add(Weight::from_parts(0, 10345844))
// Standard Error: 372 // Standard Error: 372
.saturating_add(Weight::from_ref_time(24_977).saturating_mul(k.into())) .saturating_add(Weight::from_parts(24_977, 0).saturating_mul(k.into()))
// Standard Error: 3_752 // Standard Error: 3_752
.saturating_add(Weight::from_ref_time(369_341).saturating_mul(e.into())) .saturating_add(Weight::from_parts(369_341, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(64).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 64).saturating_mul(k.into()))
.saturating_add(Weight::from_proof_size(25).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 25).saturating_mul(e.into()))
} }
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `142` // Measured: `142`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 20_661 nanoseconds. // Minimum execution time: 20_661 nanoseconds.
Weight::from_ref_time(21_119_000) Weight::from_parts(21_119_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405` // Measured: `405`
// Estimated: `5147` // Estimated: `5147`
// Minimum execution time: 26_812 nanoseconds. // Minimum execution time: 26_812 nanoseconds.
Weight::from_ref_time(28_583_000) Weight::from_parts(28_583_000, 0)
.saturating_add(Weight::from_proof_size(5147)) .saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270` // Measured: `270`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 24_615 nanoseconds. // Minimum execution time: 24_615 nanoseconds.
Weight::from_ref_time(25_129_000) Weight::from_parts(25_129_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -92,8 +92,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405` // Measured: `405`
// Estimated: `5147` // Estimated: `5147`
// Minimum execution time: 28_521 nanoseconds. // Minimum execution time: 28_521 nanoseconds.
Weight::from_ref_time(28_862_000) Weight::from_parts(28_862_000, 0)
.saturating_add(Weight::from_proof_size(5147)) .saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270` // Measured: `270`
// Estimated: `2544` // Estimated: `2544`
// Minimum execution time: 26_866 nanoseconds. // Minimum execution time: 26_866 nanoseconds.
Weight::from_ref_time(27_520_000) Weight::from_parts(27_520_000, 0)
.saturating_add(Weight::from_proof_size(2544)) .saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -59,13 +59,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `238 + m * (64 ±0)` // Measured: `238 + m * (64 ±0)`
// Estimated: `4903 + m * (192 ±0)` // Estimated: `4903 + m * (192 ±0)`
// Minimum execution time: 17_526 nanoseconds. // Minimum execution time: 17_526 nanoseconds.
Weight::from_ref_time(18_753_497) Weight::from_parts(18_753_497, 0)
.saturating_add(Weight::from_proof_size(4903)) .saturating_add(Weight::from_parts(0, 4903))
// Standard Error: 447 // Standard Error: 447
.saturating_add(Weight::from_ref_time(36_485).saturating_mul(m.into())) .saturating_add(Weight::from_parts(36_485, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -83,13 +83,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `342 + m * (64 ±0)` // Measured: `342 + m * (64 ±0)`
// Estimated: `5742 + m * (192 ±0)` // Estimated: `5742 + m * (192 ±0)`
// Minimum execution time: 20_636 nanoseconds. // Minimum execution time: 20_636 nanoseconds.
Weight::from_ref_time(20_995_974) Weight::from_parts(20_995_974, 0)
.saturating_add(Weight::from_proof_size(5742)) .saturating_add(Weight::from_parts(0, 5742))
// Standard Error: 882 // Standard Error: 882
.saturating_add(Weight::from_ref_time(46_721).saturating_mul(m.into())) .saturating_add(Weight::from_parts(46_721, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -107,13 +107,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `342 + m * (64 ±0)` // Measured: `342 + m * (64 ±0)`
// Estimated: `5742 + m * (192 ±0)` // Estimated: `5742 + m * (192 ±0)`
// Minimum execution time: 20_321 nanoseconds. // Minimum execution time: 20_321 nanoseconds.
Weight::from_ref_time(21_337_626) Weight::from_parts(21_337_626, 0)
.saturating_add(Weight::from_proof_size(5742)) .saturating_add(Weight::from_parts(0, 5742))
// Standard Error: 562 // Standard Error: 562
.saturating_add(Weight::from_ref_time(51_247).saturating_mul(m.into())) .saturating_add(Weight::from_parts(51_247, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -131,13 +131,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `342 + m * (64 ±0)` // Measured: `342 + m * (64 ±0)`
// Estimated: `5742 + m * (192 ±0)` // Estimated: `5742 + m * (192 ±0)`
// Minimum execution time: 19_216 nanoseconds. // Minimum execution time: 19_216 nanoseconds.
Weight::from_ref_time(21_532_264) Weight::from_parts(21_532_264, 0)
.saturating_add(Weight::from_proof_size(5742)) .saturating_add(Weight::from_parts(0, 5742))
// Standard Error: 868 // Standard Error: 868
.saturating_add(Weight::from_ref_time(167_139).saturating_mul(m.into())) .saturating_add(Weight::from_parts(167_139, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:1) /// Storage: TechnicalMembership Members (r:1 w:1)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -155,13 +155,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `342 + m * (64 ±0)` // Measured: `342 + m * (64 ±0)`
// Estimated: `5742 + m * (192 ±0)` // Estimated: `5742 + m * (192 ±0)`
// Minimum execution time: 20_705 nanoseconds. // Minimum execution time: 20_705 nanoseconds.
Weight::from_ref_time(21_856_516) Weight::from_parts(21_856_516, 0)
.saturating_add(Weight::from_proof_size(5742)) .saturating_add(Weight::from_parts(0, 5742))
// Standard Error: 604 // Standard Error: 604
.saturating_add(Weight::from_ref_time(48_209).saturating_mul(m.into())) .saturating_add(Weight::from_parts(48_209, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(Weight::from_proof_size(192).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Members (r:1 w:0) /// Storage: TechnicalMembership Members (r:1 w:0)
/// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen) /// Proof: TechnicalMembership Members (max_values: Some(1), max_size: Some(3202), added: 3697, mode: MaxEncodedLen)
@@ -175,13 +175,13 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `64 + m * (32 ±0)` // Measured: `64 + m * (32 ±0)`
// Estimated: `3761 + m * (32 ±0)` // Estimated: `3761 + m * (32 ±0)`
// Minimum execution time: 8_241 nanoseconds. // Minimum execution time: 8_241 nanoseconds.
Weight::from_ref_time(8_853_934) Weight::from_parts(8_853_934, 0)
.saturating_add(Weight::from_proof_size(3761)) .saturating_add(Weight::from_parts(0, 3761))
// Standard Error: 235 // Standard Error: 235
.saturating_add(Weight::from_ref_time(8_869).saturating_mul(m.into())) .saturating_add(Weight::from_parts(8_869, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(32).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into()))
} }
/// Storage: TechnicalMembership Prime (r:0 w:1) /// Storage: TechnicalMembership Prime (r:0 w:1)
/// Proof: TechnicalMembership Prime (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) /// Proof: TechnicalMembership Prime (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen)
@@ -193,10 +193,10 @@ impl<T: frame_system::Config> pallet_membership::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_407 nanoseconds. // Minimum execution time: 3_407 nanoseconds.
Weight::from_ref_time(3_649_749) Weight::from_parts(3_649_749, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 83 // Standard Error: 83
.saturating_add(Weight::from_ref_time(693).saturating_mul(m.into())) .saturating_add(Weight::from_parts(693, 0).saturating_mul(m.into()))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
} }
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 12_525 nanoseconds. // Minimum execution time: 12_525 nanoseconds.
Weight::from_ref_time(12_904_639) Weight::from_parts(12_904_639, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(627).saturating_mul(z.into())) .saturating_add(Weight::from_parts(627, 0).saturating_mul(z.into()))
} }
/// Storage: Multisig Multisigs (r:1 w:1) /// Storage: Multisig Multisigs (r:1 w:1)
/// Proof: Multisig Multisigs (max_values: None, max_size: Some(3346), added: 5821, mode: MaxEncodedLen) /// Proof: Multisig Multisigs (max_values: None, max_size: Some(3346), added: 5821, mode: MaxEncodedLen)
@@ -65,12 +65,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `318 + s * (2 ±0)` // Measured: `318 + s * (2 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 38_261 nanoseconds. // Minimum execution time: 38_261 nanoseconds.
Weight::from_ref_time(31_580_896) Weight::from_parts(31_580_896, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 643 // Standard Error: 643
.saturating_add(Weight::from_ref_time(73_644).saturating_mul(s.into())) .saturating_add(Weight::from_parts(73_644, 0).saturating_mul(s.into()))
// Standard Error: 6 // Standard Error: 6
.saturating_add(Weight::from_ref_time(1_645).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_645, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -83,12 +83,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `317` // Measured: `317`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 28_521 nanoseconds. // Minimum execution time: 28_521 nanoseconds.
Weight::from_ref_time(22_322_453) Weight::from_parts(22_322_453, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 511 // Standard Error: 511
.saturating_add(Weight::from_ref_time(70_428).saturating_mul(s.into())) .saturating_add(Weight::from_parts(70_428, 0).saturating_mul(s.into()))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(1_572).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_572, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -103,12 +103,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `455 + s * (33 ±0)` // Measured: `455 + s * (33 ±0)`
// Estimated: `8424` // Estimated: `8424`
// Minimum execution time: 43_031 nanoseconds. // Minimum execution time: 43_031 nanoseconds.
Weight::from_ref_time(35_249_755) Weight::from_parts(35_249_755, 0)
.saturating_add(Weight::from_proof_size(8424)) .saturating_add(Weight::from_parts(0, 8424))
// Standard Error: 475 // Standard Error: 475
.saturating_add(Weight::from_ref_time(86_751).saturating_mul(s.into())) .saturating_add(Weight::from_parts(86_751, 0).saturating_mul(s.into()))
// Standard Error: 4 // Standard Error: 4
.saturating_add(Weight::from_ref_time(1_638).saturating_mul(z.into())) .saturating_add(Weight::from_parts(1_638, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -120,10 +120,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `325 + s * (2 ±0)` // Measured: `325 + s * (2 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 29_204 nanoseconds. // Minimum execution time: 29_204 nanoseconds.
Weight::from_ref_time(30_223_154) Weight::from_parts(30_223_154, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 721 // Standard Error: 721
.saturating_add(Weight::from_ref_time(74_976).saturating_mul(s.into())) .saturating_add(Weight::from_parts(74_976, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -135,10 +135,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `317` // Measured: `317`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 19_489 nanoseconds. // Minimum execution time: 19_489 nanoseconds.
Weight::from_ref_time(19_999_669) Weight::from_parts(19_999_669, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 476 // Standard Error: 476
.saturating_add(Weight::from_ref_time(72_585).saturating_mul(s.into())) .saturating_add(Weight::from_parts(72_585, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -150,10 +150,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `521 + s * (1 ±0)` // Measured: `521 + s * (1 ±0)`
// Estimated: `5821` // Estimated: `5821`
// Minimum execution time: 30_287 nanoseconds. // Minimum execution time: 30_287 nanoseconds.
Weight::from_ref_time(31_301_844) Weight::from_parts(31_301_844, 0)
.saturating_add(Weight::from_proof_size(5821)) .saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 704 // Standard Error: 704
.saturating_add(Weight::from_ref_time(74_055).saturating_mul(s.into())) .saturating_add(Weight::from_parts(74_055, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3468` // Measured: `3468`
// Estimated: `38468` // Estimated: `38468`
// Minimum execution time: 153_784 nanoseconds. // Minimum execution time: 153_784 nanoseconds.
Weight::from_ref_time(155_121_000) Weight::from_parts(155_121_000, 0)
.saturating_add(Weight::from_proof_size(38468)) .saturating_add(Weight::from_parts(0, 38468))
.saturating_add(T::DbWeight::get().reads(17)) .saturating_add(T::DbWeight::get().reads(17))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3510` // Measured: `3510`
// Estimated: `39063` // Estimated: `39063`
// Minimum execution time: 151_609 nanoseconds. // Minimum execution time: 151_609 nanoseconds.
Weight::from_ref_time(155_385_000) Weight::from_parts(155_385_000, 0)
.saturating_add(Weight::from_proof_size(39063)) .saturating_add(Weight::from_parts(0, 39063))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3393` // Measured: `3393`
// Estimated: `38950` // Estimated: `38950`
// Minimum execution time: 165_036 nanoseconds. // Minimum execution time: 165_036 nanoseconds.
Weight::from_ref_time(166_264_000) Weight::from_parts(166_264_000, 0)
.saturating_add(Weight::from_proof_size(38950)) .saturating_add(Weight::from_parts(0, 38950))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
} }
@@ -154,8 +154,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1220` // Measured: `1220`
// Estimated: `13485` // Estimated: `13485`
// Minimum execution time: 61_052 nanoseconds. // Minimum execution time: 61_052 nanoseconds.
Weight::from_ref_time(61_773_000) Weight::from_parts(61_773_000, 0)
.saturating_add(Weight::from_proof_size(13485)) .saturating_add(Weight::from_parts(0, 13485))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3748` // Measured: `3748`
// Estimated: `44674` // Estimated: `44674`
// Minimum execution time: 155_226 nanoseconds. // Minimum execution time: 155_226 nanoseconds.
Weight::from_ref_time(155_893_000) Weight::from_parts(155_893_000, 0)
.saturating_add(Weight::from_proof_size(44674)) .saturating_add(Weight::from_parts(0, 44674))
.saturating_add(T::DbWeight::get().reads(18)) .saturating_add(T::DbWeight::get().reads(18))
.saturating_add(T::DbWeight::get().writes(13)) .saturating_add(T::DbWeight::get().writes(13))
} }
@@ -213,10 +213,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1672` // Measured: `1672`
// Estimated: `13025` // Estimated: `13025`
// Minimum execution time: 53_472 nanoseconds. // Minimum execution time: 53_472 nanoseconds.
Weight::from_ref_time(55_368_257) Weight::from_parts(55_368_257, 0)
.saturating_add(Weight::from_proof_size(13025)) .saturating_add(Weight::from_parts(0, 13025))
// Standard Error: 904 // Standard Error: 904
.saturating_add(Weight::from_ref_time(4_928).saturating_mul(s.into())) .saturating_add(Weight::from_parts(4_928, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -246,10 +246,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2196` // Measured: `2196`
// Estimated: `22991` // Estimated: `22991`
// Minimum execution time: 103_698 nanoseconds. // Minimum execution time: 103_698 nanoseconds.
Weight::from_ref_time(105_075_914) Weight::from_parts(105_075_914, 0)
.saturating_add(Weight::from_proof_size(22991)) .saturating_add(Weight::from_parts(0, 22991))
// Standard Error: 1_503 // Standard Error: 1_503
.saturating_add(Weight::from_ref_time(19_668).saturating_mul(s.into())) .saturating_add(Weight::from_parts(19_668, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -301,8 +301,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2584` // Measured: `2584`
// Estimated: `46001` // Estimated: `46001`
// Minimum execution time: 163_337 nanoseconds. // Minimum execution time: 163_337 nanoseconds.
Weight::from_ref_time(167_095_416) Weight::from_parts(167_095_416, 0)
.saturating_add(Weight::from_proof_size(46001)) .saturating_add(Weight::from_parts(0, 46001))
.saturating_add(T::DbWeight::get().reads(20)) .saturating_add(T::DbWeight::get().reads(20))
.saturating_add(T::DbWeight::get().writes(18)) .saturating_add(T::DbWeight::get().writes(18))
} }
@@ -353,8 +353,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1220` // Measured: `1220`
// Estimated: `32002` // Estimated: `32002`
// Minimum execution time: 149_656 nanoseconds. // Minimum execution time: 149_656 nanoseconds.
Weight::from_ref_time(150_555_000) Weight::from_parts(150_555_000, 0)
.saturating_add(Weight::from_proof_size(32002)) .saturating_add(Weight::from_parts(0, 32002))
.saturating_add(T::DbWeight::get().reads(21)) .saturating_add(T::DbWeight::get().reads(21))
.saturating_add(T::DbWeight::get().writes(15)) .saturating_add(T::DbWeight::get().writes(15))
} }
@@ -388,14 +388,14 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1805` // Measured: `1805`
// Estimated: `21998 + n * (2520 ±0)` // Estimated: `21998 + n * (2520 ±0)`
// Minimum execution time: 66_157 nanoseconds. // Minimum execution time: 66_157 nanoseconds.
Weight::from_ref_time(66_972_809) Weight::from_parts(66_972_809, 0)
.saturating_add(Weight::from_proof_size(21998)) .saturating_add(Weight::from_parts(0, 21998))
// Standard Error: 9_409 // Standard Error: 9_409
.saturating_add(Weight::from_ref_time(1_327_035).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_327_035, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
} }
/// Storage: NominationPools BondedPools (r:1 w:1) /// Storage: NominationPools BondedPools (r:1 w:1)
/// Proof: NominationPools BondedPools (max_values: None, max_size: Some(164), added: 2639, mode: MaxEncodedLen) /// Proof: NominationPools BondedPools (max_values: None, max_size: Some(164), added: 2639, mode: MaxEncodedLen)
@@ -408,8 +408,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1393` // Measured: `1393`
// Estimated: `8752` // Estimated: `8752`
// Minimum execution time: 34_743 nanoseconds. // Minimum execution time: 34_743 nanoseconds.
Weight::from_ref_time(35_038_000) Weight::from_parts(35_038_000, 0)
.saturating_add(Weight::from_proof_size(8752)) .saturating_add(Weight::from_parts(0, 8752))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -425,10 +425,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `525` // Measured: `525`
// Estimated: `5883` // Estimated: `5883`
// Minimum execution time: 14_305 nanoseconds. // Minimum execution time: 14_305 nanoseconds.
Weight::from_ref_time(14_805_073) Weight::from_parts(14_805_073, 0)
.saturating_add(Weight::from_proof_size(5883)) .saturating_add(Weight::from_parts(0, 5883))
// Standard Error: 125 // Standard Error: 125
.saturating_add(Weight::from_ref_time(1_944).saturating_mul(n.into())) .saturating_add(Weight::from_parts(1_944, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -447,8 +447,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_054 nanoseconds. // Minimum execution time: 5_054 nanoseconds.
Weight::from_ref_time(5_333_000) Weight::from_parts(5_333_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
/// Storage: NominationPools BondedPools (r:1 w:1) /// Storage: NominationPools BondedPools (r:1 w:1)
@@ -458,8 +458,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `525` // Measured: `525`
// Estimated: `2639` // Estimated: `2639`
// Minimum execution time: 20_025 nanoseconds. // Minimum execution time: 20_025 nanoseconds.
Weight::from_ref_time(20_643_000) Weight::from_parts(20_643_000, 0)
.saturating_add(Weight::from_proof_size(2639)) .saturating_add(Weight::from_parts(0, 2639))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -486,8 +486,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2032` // Measured: `2032`
// Estimated: `20489` // Estimated: `20489`
// Minimum execution time: 65_418 nanoseconds. // Minimum execution time: 65_418 nanoseconds.
Weight::from_ref_time(65_853_000) Weight::from_parts(65_853_000, 0)
.saturating_add(Weight::from_proof_size(20489)) .saturating_add(Weight::from_parts(0, 20489))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -500,8 +500,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `508` // Measured: `508`
// Estimated: `5708` // Estimated: `5708`
// Minimum execution time: 14_918 nanoseconds. // Minimum execution time: 14_918 nanoseconds.
Weight::from_ref_time(15_304_000) Weight::from_parts(15_304_000, 0)
.saturating_add(Weight::from_proof_size(5708)) .saturating_add(Weight::from_parts(0, 5708))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -55,10 +55,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `175` // Measured: `175`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 27_940 nanoseconds. // Minimum execution time: 27_940 nanoseconds.
Weight::from_ref_time(28_162_000) Weight::from_parts(28_162_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_390).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_390, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -72,10 +72,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 17_953 nanoseconds. // Minimum execution time: 17_953 nanoseconds.
Weight::from_ref_time(18_146_000) Weight::from_parts(18_146_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_389).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_389, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 17_394 nanoseconds. // Minimum execution time: 17_394 nanoseconds.
Weight::from_ref_time(17_572_000) Weight::from_parts(17_572_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_386).saturating_mul(s.into())) .saturating_add(Weight::from_parts(2_386, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `353` // Measured: `353`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 34_819 nanoseconds. // Minimum execution time: 34_819 nanoseconds.
Weight::from_ref_time(36_012_000) Weight::from_parts(36_012_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 22_730 nanoseconds. // Minimum execution time: 22_730 nanoseconds.
Weight::from_ref_time(23_936_000) Weight::from_parts(23_936_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -131,8 +131,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `220` // Measured: `220`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 19_808 nanoseconds. // Minimum execution time: 19_808 nanoseconds.
Weight::from_ref_time(21_010_000) Weight::from_parts(21_010_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -143,8 +143,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 12_864 nanoseconds. // Minimum execution time: 12_864 nanoseconds.
Weight::from_ref_time(13_780_000) Weight::from_parts(13_780_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `42` // Measured: `42`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 14_507 nanoseconds. // Minimum execution time: 14_507 nanoseconds.
Weight::from_ref_time(15_339_000) Weight::from_parts(15_339_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -167,8 +167,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 9_058 nanoseconds. // Minimum execution time: 9_058 nanoseconds.
Weight::from_ref_time(9_570_000) Weight::from_parts(9_570_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -181,8 +181,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144` // Measured: `144`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 21_505 nanoseconds. // Minimum execution time: 21_505 nanoseconds.
Weight::from_ref_time(22_513_000) Weight::from_parts(22_513_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -193,8 +193,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 8_747 nanoseconds. // Minimum execution time: 8_747 nanoseconds.
Weight::from_ref_time(9_161_000) Weight::from_parts(9_161_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -205,8 +205,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `106` // Measured: `106`
// Estimated: `2566` // Estimated: `2566`
// Minimum execution time: 9_108 nanoseconds. // Minimum execution time: 9_108 nanoseconds.
Weight::from_ref_time(9_493_000) Weight::from_parts(9_493_000, 0)
.saturating_add(Weight::from_proof_size(2566)) .saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -53,8 +53,8 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 16_045 nanoseconds. // Minimum execution time: 16_045 nanoseconds.
Weight::from_ref_time(17_922_796) Weight::from_parts(17_922_796, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
} }
/// Storage: Proxy Proxies (r:1 w:0) /// Storage: Proxy Proxies (r:1 w:0)
@@ -70,12 +70,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `650 + a * (68 ±0) + p * (37 ±0)` // Measured: `650 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027` // Estimated: `11027`
// Minimum execution time: 34_619 nanoseconds. // Minimum execution time: 34_619 nanoseconds.
Weight::from_ref_time(35_338_676) Weight::from_parts(35_338_676, 0)
.saturating_add(Weight::from_proof_size(11027)) .saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 1_899 // Standard Error: 1_899
.saturating_add(Weight::from_ref_time(162_971).saturating_mul(a.into())) .saturating_add(Weight::from_parts(162_971, 0).saturating_mul(a.into()))
// Standard Error: 1_963 // Standard Error: 1_963
.saturating_add(Weight::from_ref_time(13_533).saturating_mul(p.into())) .saturating_add(Weight::from_parts(13_533, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -90,12 +90,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)` // Measured: `533 + a * (68 ±0)`
// Estimated: `7311` // Estimated: `7311`
// Minimum execution time: 21_156 nanoseconds. // Minimum execution time: 21_156 nanoseconds.
Weight::from_ref_time(22_277_542) Weight::from_parts(22_277_542, 0)
.saturating_add(Weight::from_proof_size(7311)) .saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_498 // Standard Error: 1_498
.saturating_add(Weight::from_ref_time(164_253).saturating_mul(a.into())) .saturating_add(Weight::from_parts(164_253, 0).saturating_mul(a.into()))
// Standard Error: 1_548 // Standard Error: 1_548
.saturating_add(Weight::from_ref_time(3_031).saturating_mul(p.into())) .saturating_add(Weight::from_parts(3_031, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -110,10 +110,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)` // Measured: `533 + a * (68 ±0)`
// Estimated: `7311` // Estimated: `7311`
// Minimum execution time: 21_507 nanoseconds. // Minimum execution time: 21_507 nanoseconds.
Weight::from_ref_time(23_041_588) Weight::from_parts(23_041_588, 0)
.saturating_add(Weight::from_proof_size(7311)) .saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_515 // Standard Error: 1_515
.saturating_add(Weight::from_ref_time(143_107).saturating_mul(a.into())) .saturating_add(Weight::from_parts(143_107, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -130,12 +130,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `582 + a * (68 ±0) + p * (37 ±0)` // Measured: `582 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027` // Estimated: `11027`
// Minimum execution time: 30_053 nanoseconds. // Minimum execution time: 30_053 nanoseconds.
Weight::from_ref_time(31_573_633) Weight::from_parts(31_573_633, 0)
.saturating_add(Weight::from_proof_size(11027)) .saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 2_251 // Standard Error: 2_251
.saturating_add(Weight::from_ref_time(140_597).saturating_mul(a.into())) .saturating_add(Weight::from_parts(140_597, 0).saturating_mul(a.into()))
// Standard Error: 2_326 // Standard Error: 2_326
.saturating_add(Weight::from_ref_time(33_286).saturating_mul(p.into())) .saturating_add(Weight::from_parts(33_286, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -147,10 +147,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 22_886 nanoseconds. // Minimum execution time: 22_886 nanoseconds.
Weight::from_ref_time(23_835_705) Weight::from_parts(23_835_705, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_804 // Standard Error: 1_804
.saturating_add(Weight::from_ref_time(57_157).saturating_mul(p.into())) .saturating_add(Weight::from_parts(57_157, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -162,10 +162,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 22_234 nanoseconds. // Minimum execution time: 22_234 nanoseconds.
Weight::from_ref_time(23_637_414) Weight::from_parts(23_637_414, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_672 // Standard Error: 1_672
.saturating_add(Weight::from_ref_time(65_808).saturating_mul(p.into())) .saturating_add(Weight::from_parts(65_808, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -177,10 +177,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)` // Measured: `259 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 17_995 nanoseconds. // Minimum execution time: 17_995 nanoseconds.
Weight::from_ref_time(18_853_035) Weight::from_parts(18_853_035, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 2_823 // Standard Error: 2_823
.saturating_add(Weight::from_ref_time(35_158).saturating_mul(p.into())) .saturating_add(Weight::from_parts(35_158, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `239` // Measured: `239`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 24_710 nanoseconds. // Minimum execution time: 24_710 nanoseconds.
Weight::from_ref_time(25_539_249) Weight::from_parts(25_539_249, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_383 // Standard Error: 1_383
.saturating_add(Weight::from_ref_time(10_689).saturating_mul(p.into())) .saturating_add(Weight::from_parts(10_689, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -207,10 +207,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `296 + p * (37 ±0)` // Measured: `296 + p * (37 ±0)`
// Estimated: `3716` // Estimated: `3716`
// Minimum execution time: 19_199 nanoseconds. // Minimum execution time: 19_199 nanoseconds.
Weight::from_ref_time(19_877_054) Weight::from_parts(19_877_054, 0)
.saturating_add(Weight::from_proof_size(3716)) .saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_043 // Standard Error: 1_043
.saturating_add(Weight::from_ref_time(31_448).saturating_mul(p.into())) .saturating_add(Weight::from_parts(31_448, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `69` // Measured: `69`
// Estimated: `499` // Estimated: `499`
// Minimum execution time: 4_926 nanoseconds. // Minimum execution time: 4_926 nanoseconds.
Weight::from_ref_time(5_185_000) Weight::from_parts(5_185_000, 0)
.saturating_add(Weight::from_proof_size(499)) .saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -65,10 +65,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 4_566 nanoseconds. // Minimum execution time: 4_566 nanoseconds.
Weight::from_ref_time(7_521_754) Weight::from_parts(7_521_754, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_078 // Standard Error: 2_078
.saturating_add(Weight::from_ref_time(981_390).saturating_mul(s.into())) .saturating_add(Weight::from_parts(981_390, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_979 nanoseconds. // Minimum execution time: 5_979 nanoseconds.
Weight::from_ref_time(6_097_000) Weight::from_parts(6_097_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Preimage PreimageFor (r:1 w:1) /// Storage: Preimage PreimageFor (r:1 w:1)
/// Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured) /// Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured)
@@ -90,13 +90,13 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `211 + s * (1 ±0)` // Measured: `211 + s * (1 ±0)`
// Estimated: `5252 + s * (1 ±0)` // Estimated: `5252 + s * (1 ±0)`
// Minimum execution time: 20_316 nanoseconds. // Minimum execution time: 20_316 nanoseconds.
Weight::from_ref_time(20_395_000) Weight::from_parts(20_395_000, 0)
.saturating_add(Weight::from_proof_size(5252)) .saturating_add(Weight::from_parts(0, 5252))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(1_259).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_259, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(1).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into()))
} }
/// Storage: Scheduler Lookup (r:0 w:1) /// Storage: Scheduler Lookup (r:0 w:1)
/// Proof: Scheduler Lookup (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen) /// Proof: Scheduler Lookup (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_432 nanoseconds. // Minimum execution time: 7_432 nanoseconds.
Weight::from_ref_time(7_590_000) Weight::from_parts(7_590_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
fn service_task_periodic() -> Weight { fn service_task_periodic() -> Weight {
@@ -114,24 +114,24 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_809 nanoseconds. // Minimum execution time: 5_809 nanoseconds.
Weight::from_ref_time(5_893_000) Weight::from_parts(5_893_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn execute_dispatch_signed() -> Weight { fn execute_dispatch_signed() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_608 nanoseconds. // Minimum execution time: 2_608 nanoseconds.
Weight::from_ref_time(2_747_000) Weight::from_parts(2_747_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn execute_dispatch_unsigned() -> Weight { fn execute_dispatch_unsigned() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_614 nanoseconds. // Minimum execution time: 2_614 nanoseconds.
Weight::from_ref_time(2_712_000) Weight::from_parts(2_712_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Scheduler Agenda (r:1 w:1) /// Storage: Scheduler Agenda (r:1 w:1)
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(38963), added: 41438, mode: MaxEncodedLen) /// Proof: Scheduler Agenda (max_values: None, max_size: Some(38963), added: 41438, mode: MaxEncodedLen)
@@ -141,10 +141,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 14_631 nanoseconds. // Minimum execution time: 14_631 nanoseconds.
Weight::from_ref_time(17_646_956) Weight::from_parts(17_646_956, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_176 // Standard Error: 2_176
.saturating_add(Weight::from_ref_time(961_640).saturating_mul(s.into())) .saturating_add(Weight::from_parts(961_640, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -158,10 +158,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)` // Measured: `148 + s * (177 ±0)`
// Estimated: `41438` // Estimated: `41438`
// Minimum execution time: 19_439 nanoseconds. // Minimum execution time: 19_439 nanoseconds.
Weight::from_ref_time(18_724_125) Weight::from_parts(18_724_125, 0)
.saturating_add(Weight::from_proof_size(41438)) .saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 3_388 // Standard Error: 3_388
.saturating_add(Weight::from_ref_time(1_745_988).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_745_988, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -175,10 +175,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `325 + s * (185 ±0)` // Measured: `325 + s * (185 ±0)`
// Estimated: `43961` // Estimated: `43961`
// Minimum execution time: 17_649 nanoseconds. // Minimum execution time: 17_649 nanoseconds.
Weight::from_ref_time(21_717_238) Weight::from_parts(21_717_238, 0)
.saturating_add(Weight::from_proof_size(43961)) .saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 3_317 // Standard Error: 3_317
.saturating_add(Weight::from_ref_time(999_966).saturating_mul(s.into())) .saturating_add(Weight::from_parts(999_966, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `351 + s * (185 ±0)` // Measured: `351 + s * (185 ±0)`
// Estimated: `43961` // Estimated: `43961`
// Minimum execution time: 20_150 nanoseconds. // Minimum execution time: 20_150 nanoseconds.
Weight::from_ref_time(20_756_481) Weight::from_parts(20_756_481, 0)
.saturating_add(Weight::from_proof_size(43961)) .saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 5_251 // Standard Error: 5_251
.saturating_add(Weight::from_ref_time(1_768_601).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_768_601, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `1951` // Measured: `1951`
// Estimated: `24793` // Estimated: `24793`
// Minimum execution time: 52_494 nanoseconds. // Minimum execution time: 52_494 nanoseconds.
Weight::from_ref_time(53_401_000) Weight::from_parts(53_401_000, 0)
.saturating_add(Weight::from_proof_size(24793)) .saturating_add(Weight::from_parts(0, 24793))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `1847` // Measured: `1847`
// Estimated: `9735` // Estimated: `9735`
// Minimum execution time: 36_990 nanoseconds. // Minimum execution time: 36_990 nanoseconds.
Weight::from_ref_time(37_780_000) Weight::from_parts(37_780_000, 0)
.saturating_add(Weight::from_proof_size(9735)) .saturating_add(Weight::from_parts(0, 9735))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1012` // Measured: `1012`
// Estimated: `10386` // Estimated: `10386`
// Minimum execution time: 43_740 nanoseconds. // Minimum execution time: 43_740 nanoseconds.
Weight::from_ref_time(44_468_000) Weight::from_parts(44_468_000, 0)
.saturating_add(Weight::from_proof_size(10386)) .saturating_add(Weight::from_parts(0, 10386))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -80,8 +80,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2149` // Measured: `2149`
// Estimated: `22888` // Estimated: `22888`
// Minimum execution time: 85_188 nanoseconds. // Minimum execution time: 85_188 nanoseconds.
Weight::from_ref_time(85_825_000) Weight::from_parts(85_825_000, 0)
.saturating_add(Weight::from_proof_size(22888)) .saturating_add(Weight::from_parts(0, 22888))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2356` // Measured: `2356`
// Estimated: `29534` // Estimated: `29534`
// Minimum execution time: 92_366 nanoseconds. // Minimum execution time: 92_366 nanoseconds.
Weight::from_ref_time(93_364_000) Weight::from_parts(93_364_000, 0)
.saturating_add(Weight::from_proof_size(29534)) .saturating_add(Weight::from_parts(0, 29534))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -127,10 +127,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1011` // Measured: `1011`
// Estimated: `10442` // Estimated: `10442`
// Minimum execution time: 34_821 nanoseconds. // Minimum execution time: 34_821 nanoseconds.
Weight::from_ref_time(36_375_117) Weight::from_parts(36_375_117, 0)
.saturating_add(Weight::from_proof_size(10442)) .saturating_add(Weight::from_parts(0, 10442))
// Standard Error: 528 // Standard Error: 528
.saturating_add(Weight::from_ref_time(9_227).saturating_mul(s.into())) .saturating_add(Weight::from_parts(9_227, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -168,14 +168,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2377 + s * (4 ±0)` // Measured: `2377 + s * (4 ±0)`
// Estimated: `32194 + s * (4 ±0)` // Estimated: `32194 + s * (4 ±0)`
// Minimum execution time: 80_054 nanoseconds. // Minimum execution time: 80_054 nanoseconds.
Weight::from_ref_time(85_486_698) Weight::from_parts(85_486_698, 0)
.saturating_add(Weight::from_proof_size(32194)) .saturating_add(Weight::from_parts(0, 32194))
// Standard Error: 2_051 // Standard Error: 2_051
.saturating_add(Weight::from_ref_time(1_190_809).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_190_809, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads(13))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -204,8 +204,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1341` // Measured: `1341`
// Estimated: `19359` // Estimated: `19359`
// Minimum execution time: 58_711 nanoseconds. // Minimum execution time: 58_711 nanoseconds.
Weight::from_ref_time(59_365_000) Weight::from_parts(59_365_000, 0)
.saturating_add(Weight::from_proof_size(19359)) .saturating_add(Weight::from_parts(0, 19359))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -219,14 +219,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1221 + k * (601 ±0)` // Measured: `1221 + k * (601 ±0)`
// Estimated: `3566 + k * (3033 ±0)` // Estimated: `3566 + k * (3033 ±0)`
// Minimum execution time: 27_191 nanoseconds. // Minimum execution time: 27_191 nanoseconds.
Weight::from_ref_time(26_752_481) Weight::from_parts(26_752_481, 0)
.saturating_add(Weight::from_proof_size(3566)) .saturating_add(Weight::from_parts(0, 3566))
// Standard Error: 9_824 // Standard Error: 9_824
.saturating_add(Weight::from_ref_time(8_400_737).saturating_mul(k.into())) .saturating_add(Weight::from_parts(8_400_737, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(3033).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 3033).saturating_mul(k.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -256,14 +256,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1881 + n * (105 ±0)` // Measured: `1881 + n * (105 ±0)`
// Estimated: `21988 + n * (2520 ±0)` // Estimated: `21988 + n * (2520 ±0)`
// Minimum execution time: 66_494 nanoseconds. // Minimum execution time: 66_494 nanoseconds.
Weight::from_ref_time(63_759_325) Weight::from_parts(63_759_325, 0)
.saturating_add(Weight::from_proof_size(21988)) .saturating_add(Weight::from_parts(0, 21988))
// Standard Error: 13_741 // Standard Error: 13_741
.saturating_add(Weight::from_ref_time(3_422_077).saturating_mul(n.into())) .saturating_add(Weight::from_parts(3_422_077, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -284,8 +284,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1767` // Measured: `1767`
// Estimated: `17932` // Estimated: `17932`
// Minimum execution time: 58_584 nanoseconds. // Minimum execution time: 58_584 nanoseconds.
Weight::from_ref_time(59_566_000) Weight::from_parts(59_566_000, 0)
.saturating_add(Weight::from_proof_size(17932)) .saturating_add(Weight::from_parts(0, 17932))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -298,8 +298,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `769` // Measured: `769`
// Estimated: `3566` // Estimated: `3566`
// Minimum execution time: 15_107 nanoseconds. // Minimum execution time: 15_107 nanoseconds.
Weight::from_ref_time(15_419_000) Weight::from_parts(15_419_000, 0)
.saturating_add(Weight::from_proof_size(3566)) .saturating_add(Weight::from_parts(0, 3566))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -312,8 +312,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `868` // Measured: `868`
// Estimated: `9679` // Estimated: `9679`
// Minimum execution time: 23_303 nanoseconds. // Minimum execution time: 23_303 nanoseconds.
Weight::from_ref_time(23_841_000) Weight::from_parts(23_841_000, 0)
.saturating_add(Weight::from_proof_size(9679)) .saturating_add(Weight::from_parts(0, 9679))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -324,8 +324,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_839 nanoseconds. // Minimum execution time: 2_839 nanoseconds.
Weight::from_ref_time(3_009_000) Weight::from_parts(3_009_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -335,8 +335,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 11_258 nanoseconds. // Minimum execution time: 11_258 nanoseconds.
Weight::from_ref_time(11_718_000) Weight::from_parts(11_718_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -346,8 +346,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 11_284 nanoseconds. // Minimum execution time: 11_284 nanoseconds.
Weight::from_ref_time(11_634_000) Weight::from_parts(11_634_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking ForceEra (r:0 w:1) /// Storage: Staking ForceEra (r:0 w:1)
@@ -357,8 +357,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 11_422 nanoseconds. // Minimum execution time: 11_422 nanoseconds.
Weight::from_ref_time(11_775_000) Weight::from_parts(11_775_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking Invulnerables (r:0 w:1) /// Storage: Staking Invulnerables (r:0 w:1)
@@ -369,10 +369,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_041 nanoseconds. // Minimum execution time: 3_041 nanoseconds.
Weight::from_ref_time(3_485_637) Weight::from_parts(3_485_637, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 28 // Standard Error: 28
.saturating_add(Weight::from_ref_time(11_577).saturating_mul(v.into())) .saturating_add(Weight::from_parts(11_577, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Staking Bonded (r:1 w:1) /// Storage: Staking Bonded (r:1 w:1)
@@ -407,14 +407,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2071 + s * (4 ±0)` // Measured: `2071 + s * (4 ±0)`
// Estimated: `27823 + s * (4 ±0)` // Estimated: `27823 + s * (4 ±0)`
// Minimum execution time: 72_735 nanoseconds. // Minimum execution time: 72_735 nanoseconds.
Weight::from_ref_time(77_758_788) Weight::from_parts(77_758_788, 0)
.saturating_add(Weight::from_proof_size(27823)) .saturating_add(Weight::from_parts(0, 27823))
// Standard Error: 2_098 // Standard Error: 2_098
.saturating_add(Weight::from_ref_time(1_204_930).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_204_930, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: Staking UnappliedSlashes (r:1 w:1) /// Storage: Staking UnappliedSlashes (r:1 w:1)
/// Proof Skipped: Staking UnappliedSlashes (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Staking UnappliedSlashes (max_values: None, max_size: None, mode: Measured)
@@ -424,10 +424,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `66604` // Measured: `66604`
// Estimated: `69079` // Estimated: `69079`
// Minimum execution time: 122_159 nanoseconds. // Minimum execution time: 122_159 nanoseconds.
Weight::from_ref_time(930_005_952) Weight::from_parts(930_005_952, 0)
.saturating_add(Weight::from_proof_size(69079)) .saturating_add(Weight::from_parts(0, 69079))
// Standard Error: 58_572 // Standard Error: 58_572
.saturating_add(Weight::from_ref_time(4_941_609).saturating_mul(s.into())) .saturating_add(Weight::from_parts(4_941_609, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -455,15 +455,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `34307 + n * (150 ±0)` // Measured: `34307 + n * (150 ±0)`
// Estimated: `79850 + n * (8026 ±0)` // Estimated: `79850 + n * (8026 ±0)`
// Minimum execution time: 88_998 nanoseconds. // Minimum execution time: 88_998 nanoseconds.
Weight::from_ref_time(89_115_261) Weight::from_parts(89_115_261, 0)
.saturating_add(Weight::from_proof_size(79850)) .saturating_add(Weight::from_parts(0, 79850))
// Standard Error: 14_441 // Standard Error: 14_441
.saturating_add(Weight::from_ref_time(29_610_077).saturating_mul(n.into())) .saturating_add(Weight::from_parts(29_610_077, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(8026).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 8026).saturating_mul(n.into()))
} }
/// Storage: Staking CurrentEra (r:1 w:0) /// Storage: Staking CurrentEra (r:1 w:0)
/// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -491,15 +491,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `62046 + n * (477 ±0)` // Measured: `62046 + n * (477 ±0)`
// Estimated: `131062 + n * (16040 ±3)` // Estimated: `131062 + n * (16040 ±3)`
// Minimum execution time: 109_154 nanoseconds. // Minimum execution time: 109_154 nanoseconds.
Weight::from_ref_time(65_384_400) Weight::from_parts(65_384_400, 0)
.saturating_add(Weight::from_proof_size(131062)) .saturating_add(Weight::from_parts(0, 131062))
// Standard Error: 22_770 // Standard Error: 22_770
.saturating_add(Weight::from_ref_time(41_592_841).saturating_mul(n.into())) .saturating_add(Weight::from_parts(41_592_841, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(16040).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 16040).saturating_mul(n.into()))
} }
/// Storage: Staking Ledger (r:1 w:1) /// Storage: Staking Ledger (r:1 w:1)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen) /// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -519,10 +519,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2150 + l * (5 ±0)` // Measured: `2150 + l * (5 ±0)`
// Estimated: `25491` // Estimated: `25491`
// Minimum execution time: 84_424 nanoseconds. // Minimum execution time: 84_424 nanoseconds.
Weight::from_ref_time(86_051_149) Weight::from_parts(86_051_149, 0)
.saturating_add(Weight::from_proof_size(25491)) .saturating_add(Weight::from_parts(0, 25491))
// Standard Error: 4_213 // Standard Error: 4_213
.saturating_add(Weight::from_ref_time(48_663).saturating_mul(l.into())) .saturating_add(Weight::from_parts(48_663, 0).saturating_mul(l.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -558,14 +558,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2377 + s * (4 ±0)` // Measured: `2377 + s * (4 ±0)`
// Estimated: `31701 + s * (4 ±0)` // Estimated: `31701 + s * (4 ±0)`
// Minimum execution time: 85_740 nanoseconds. // Minimum execution time: 85_740 nanoseconds.
Weight::from_ref_time(87_514_396) Weight::from_parts(87_514_396, 0)
.saturating_add(Weight::from_proof_size(31701)) .saturating_add(Weight::from_parts(0, 31701))
// Standard Error: 5_169 // Standard Error: 5_169
.saturating_add(Weight::from_ref_time(1_156_685).saturating_mul(s.into())) .saturating_add(Weight::from_parts(1_156_685, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into())) .saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
} }
/// Storage: VoterList CounterForListNodes (r:1 w:0) /// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -610,19 +610,19 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0 + v * (3658 ±0) + n * (812 ±0)` // Measured: `0 + v * (3658 ±0) + n * (812 ±0)`
// Estimated: `472212 + v * (16741 ±0) + n * (12939 ±0)` // Estimated: `472212 + v * (16741 ±0) + n * (12939 ±0)`
// Minimum execution time: 523_071 nanoseconds. // Minimum execution time: 523_071 nanoseconds.
Weight::from_ref_time(524_088_000) Weight::from_parts(524_088_000, 0)
.saturating_add(Weight::from_proof_size(472212)) .saturating_add(Weight::from_parts(0, 472212))
// Standard Error: 2_051_818 // Standard Error: 2_051_818
.saturating_add(Weight::from_ref_time(65_963_939).saturating_mul(v.into())) .saturating_add(Weight::from_parts(65_963_939, 0).saturating_mul(v.into()))
// Standard Error: 204_452 // Standard Error: 204_452
.saturating_add(Weight::from_ref_time(17_176_688).saturating_mul(n.into())) .saturating_add(Weight::from_parts(17_176_688, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(185)) .saturating_add(T::DbWeight::get().reads(185))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
.saturating_add(Weight::from_proof_size(16741).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 16741).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(12939).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 12939).saturating_mul(n.into()))
} }
/// Storage: VoterList CounterForListNodes (r:1 w:0) /// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -649,18 +649,18 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `3067 + v * (455 ±0) + n * (1003 ±0)` // Measured: `3067 + v * (455 ±0) + n * (1003 ±0)`
// Estimated: `456188 + v * (14295 ±0) + n * (11775 ±0)` // Estimated: `456188 + v * (14295 ±0) + n * (11775 ±0)`
// Minimum execution time: 32_257_897 nanoseconds. // Minimum execution time: 32_257_897 nanoseconds.
Weight::from_ref_time(32_376_431_000) Weight::from_parts(32_376_431_000, 0)
.saturating_add(Weight::from_proof_size(456188)) .saturating_add(Weight::from_parts(0, 456188))
// Standard Error: 355_726 // Standard Error: 355_726
.saturating_add(Weight::from_ref_time(5_080_198).saturating_mul(v.into())) .saturating_add(Weight::from_parts(5_080_198, 0).saturating_mul(v.into()))
// Standard Error: 355_726 // Standard Error: 355_726
.saturating_add(Weight::from_ref_time(3_195_407).saturating_mul(n.into())) .saturating_add(Weight::from_parts(3_195_407, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(180)) .saturating_add(T::DbWeight::get().reads(180))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(14295).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 14295).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(11775).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 11775).saturating_mul(n.into()))
} }
/// Storage: Staking CounterForValidators (r:1 w:0) /// Storage: Staking CounterForValidators (r:1 w:0)
/// Proof: Staking CounterForValidators (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking CounterForValidators (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -674,14 +674,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `917 + v * (50 ±0)` // Measured: `917 + v * (50 ±0)`
// Estimated: `3562 + v * (2520 ±0)` // Estimated: `3562 + v * (2520 ±0)`
// Minimum execution time: 3_860_791 nanoseconds. // Minimum execution time: 3_860_791 nanoseconds.
Weight::from_ref_time(3_942_649_000) Weight::from_parts(3_942_649_000, 0)
.saturating_add(Weight::from_proof_size(3562)) .saturating_add(Weight::from_parts(0, 3562))
// Standard Error: 45_427 // Standard Error: 45_427
.saturating_add(Weight::from_ref_time(2_955_973).saturating_mul(v.into())) .saturating_add(Weight::from_parts(2_955_973, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(v.into())) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into()))
} }
/// Storage: Staking MinCommission (r:0 w:1) /// Storage: Staking MinCommission (r:0 w:1)
/// Proof: Staking MinCommission (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) /// Proof: Staking MinCommission (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -700,8 +700,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_334 nanoseconds. // Minimum execution time: 6_334 nanoseconds.
Weight::from_ref_time(6_585_000) Weight::from_parts(6_585_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
/// Storage: Staking MinCommission (r:0 w:1) /// Storage: Staking MinCommission (r:0 w:1)
@@ -721,8 +721,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 5_990 nanoseconds. // Minimum execution time: 5_990 nanoseconds.
Weight::from_ref_time(6_241_000) Weight::from_parts(6_241_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
/// Storage: Staking Ledger (r:1 w:0) /// Storage: Staking Ledger (r:1 w:0)
@@ -750,8 +750,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1922` // Measured: `1922`
// Estimated: `19438` // Estimated: `19438`
// Minimum execution time: 71_020 nanoseconds. // Minimum execution time: 71_020 nanoseconds.
Weight::from_ref_time(71_651_000) Weight::from_parts(71_651_000, 0)
.saturating_add(Weight::from_proof_size(19438)) .saturating_add(Weight::from_parts(0, 19438))
.saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -764,8 +764,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `627` // Measured: `627`
// Estimated: `3019` // Estimated: `3019`
// Minimum execution time: 14_422 nanoseconds. // Minimum execution time: 14_422 nanoseconds.
Weight::from_ref_time(14_912_000) Weight::from_parts(14_912_000, 0)
.saturating_add(Weight::from_proof_size(3019)) .saturating_add(Weight::from_parts(0, 3019))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -776,8 +776,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 3_171 nanoseconds. // Minimum execution time: 3_171 nanoseconds.
Weight::from_ref_time(3_313_000) Weight::from_parts(3_313_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `345` // Measured: `345`
// Estimated: `1006` // Estimated: `1006`
// Minimum execution time: 10_462 nanoseconds. // Minimum execution time: 10_462 nanoseconds.
Weight::from_ref_time(10_856_000) Weight::from_parts(10_856_000, 0)
.saturating_add(Weight::from_proof_size(1006)) .saturating_add(Weight::from_parts(0, 1006))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -64,7 +64,7 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `128` // Measured: `128`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 4_811 nanoseconds. // Minimum execution time: 4_811 nanoseconds.
Weight::from_ref_time(5_007_000) Weight::from_parts(5_007_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
} }
@@ -55,10 +55,10 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `4` // Measured: `4`
// Estimated: `4958` // Estimated: `4958`
// Minimum execution time: 24_717 nanoseconds. // Minimum execution time: 24_717 nanoseconds.
Weight::from_ref_time(25_747_782) Weight::from_parts(25_747_782, 0)
.saturating_add(Weight::from_proof_size(4958)) .saturating_add(Weight::from_parts(0, 4958))
// Standard Error: 4 // Standard Error: 4
.saturating_add(Weight::from_ref_time(1_823).saturating_mul(r.into())) .saturating_add(Weight::from_parts(1_823, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -71,8 +71,8 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `253` // Measured: `253`
// Estimated: `2981` // Estimated: `2981`
// Minimum execution time: 23_963 nanoseconds. // Minimum execution time: 23_963 nanoseconds.
Weight::from_ref_time(24_323_000) Weight::from_parts(24_323_000, 0)
.saturating_add(Weight::from_proof_size(2981)) .saturating_add(Weight::from_parts(0, 2981))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -89,15 +89,15 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `106 + t * (64 ±0)` // Measured: `106 + t * (64 ±0)`
// Estimated: `3288 + t * (192 ±0)` // Estimated: `3288 + t * (192 ±0)`
// Minimum execution time: 20_330 nanoseconds. // Minimum execution time: 20_330 nanoseconds.
Weight::from_ref_time(19_770_627) Weight::from_parts(19_770_627, 0)
.saturating_add(Weight::from_proof_size(3288)) .saturating_add(Weight::from_parts(0, 3288))
// Standard Error: 5 // Standard Error: 5
.saturating_add(Weight::from_ref_time(1_722).saturating_mul(r.into())) .saturating_add(Weight::from_parts(1_722, 0).saturating_mul(r.into()))
// Standard Error: 6_711 // Standard Error: 6_711
.saturating_add(Weight::from_ref_time(133_401).saturating_mul(t.into())) .saturating_add(Weight::from_parts(133_401, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(192).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 192).saturating_mul(t.into()))
} }
/// Storage: PhragmenElection Members (r:1 w:0) /// Storage: PhragmenElection Members (r:1 w:0)
/// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: PhragmenElection Members (max_values: Some(1), max_size: None, mode: Measured)
@@ -109,13 +109,13 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `359 + t * (112 ±0)` // Measured: `359 + t * (112 ±0)`
// Estimated: `3688 + t * (224 ±0)` // Estimated: `3688 + t * (224 ±0)`
// Minimum execution time: 15_707 nanoseconds. // Minimum execution time: 15_707 nanoseconds.
Weight::from_ref_time(15_992_893) Weight::from_parts(15_992_893, 0)
.saturating_add(Weight::from_proof_size(3688)) .saturating_add(Weight::from_parts(0, 3688))
// Standard Error: 2_102 // Standard Error: 2_102
.saturating_add(Weight::from_ref_time(122_754).saturating_mul(t.into())) .saturating_add(Weight::from_parts(122_754, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(224).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 224).saturating_mul(t.into()))
} }
/// Storage: Tips Tips (r:1 w:1) /// Storage: Tips Tips (r:1 w:1)
/// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured)
@@ -131,13 +131,13 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `398 + t * (112 ±0)` // Measured: `398 + t * (112 ±0)`
// Estimated: `6740 + t * (336 ±0)` // Estimated: `6740 + t * (336 ±0)`
// Minimum execution time: 44_350 nanoseconds. // Minimum execution time: 44_350 nanoseconds.
Weight::from_ref_time(46_263_953) Weight::from_parts(46_263_953, 0)
.saturating_add(Weight::from_proof_size(6740)) .saturating_add(Weight::from_parts(0, 6740))
// Standard Error: 8_644 // Standard Error: 8_644
.saturating_add(Weight::from_ref_time(147_757).saturating_mul(t.into())) .saturating_add(Weight::from_parts(147_757, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(336).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 336).saturating_mul(t.into()))
} }
/// Storage: Tips Tips (r:1 w:1) /// Storage: Tips Tips (r:1 w:1)
/// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured)
@@ -149,10 +149,10 @@ impl<T: frame_system::Config> pallet_tips::WeightInfo for WeightInfo<T> {
// Measured: `301` // Measured: `301`
// Estimated: `3077` // Estimated: `3077`
// Minimum execution time: 15_401 nanoseconds. // Minimum execution time: 15_401 nanoseconds.
Weight::from_ref_time(16_069_268) Weight::from_parts(16_069_268, 0)
.saturating_add(Weight::from_proof_size(3077)) .saturating_add(Weight::from_parts(0, 3077))
// Standard Error: 2_069 // Standard Error: 2_069
.saturating_add(Weight::from_ref_time(13_562).saturating_mul(t.into())) .saturating_add(Weight::from_parts(13_562, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `6` // Measured: `6`
// Estimated: `1396` // Estimated: `1396`
// Minimum execution time: 14_716 nanoseconds. // Minimum execution time: 14_716 nanoseconds.
Weight::from_ref_time(15_127_000) Weight::from_parts(15_127_000, 0)
.saturating_add(Weight::from_proof_size(1396)) .saturating_add(Weight::from_parts(0, 1396))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `139` // Measured: `139`
// Estimated: `499` // Estimated: `499`
// Minimum execution time: 24_325 nanoseconds. // Minimum execution time: 24_325 nanoseconds.
Weight::from_ref_time(24_889_000) Weight::from_parts(24_889_000, 0)
.saturating_add(Weight::from_proof_size(499)) .saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `329` // Measured: `329`
// Estimated: `5186` // Estimated: `5186`
// Minimum execution time: 35_492 nanoseconds. // Minimum execution time: 35_492 nanoseconds.
Weight::from_ref_time(36_192_000) Weight::from_parts(36_192_000, 0)
.saturating_add(Weight::from_proof_size(5186)) .saturating_add(Weight::from_parts(0, 5186))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -99,10 +99,10 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `464 + p * (8 ±0)` // Measured: `464 + p * (8 ±0)`
// Estimated: `3480` // Estimated: `3480`
// Minimum execution time: 9_842 nanoseconds. // Minimum execution time: 9_842 nanoseconds.
Weight::from_ref_time(12_599_619) Weight::from_parts(12_599_619, 0)
.saturating_add(Weight::from_proof_size(3480)) .saturating_add(Weight::from_parts(0, 3480))
// Standard Error: 1_244 // Standard Error: 1_244
.saturating_add(Weight::from_ref_time(17_246).saturating_mul(p.into())) .saturating_add(Weight::from_parts(17_246, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -113,8 +113,8 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `90` // Measured: `90`
// Estimated: `897` // Estimated: `897`
// Minimum execution time: 7_388 nanoseconds. // Minimum execution time: 7_388 nanoseconds.
Weight::from_ref_time(7_549_000) Weight::from_parts(7_549_000, 0)
.saturating_add(Weight::from_proof_size(897)) .saturating_add(Weight::from_parts(0, 897))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -136,14 +136,14 @@ impl<T: frame_system::Config> pallet_treasury::WeightInfo for WeightInfo<T> {
// Measured: `245 + p * (314 ±0)` // Measured: `245 + p * (314 ±0)`
// Estimated: `2816 + p * (7789 ±0)` // Estimated: `2816 + p * (7789 ±0)`
// Minimum execution time: 40_466 nanoseconds. // Minimum execution time: 40_466 nanoseconds.
Weight::from_ref_time(46_938_455) Weight::from_parts(46_938_455, 0)
.saturating_add(Weight::from_proof_size(2816)) .saturating_add(Weight::from_parts(0, 2816))
// Standard Error: 31_202 // Standard Error: 31_202
.saturating_add(Weight::from_ref_time(33_059_622).saturating_mul(p.into())) .saturating_add(Weight::from_parts(33_059_622, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(7789).saturating_mul(p.into())) .saturating_add(Weight::from_parts(0, 7789).saturating_mul(p.into()))
} }
} }
@@ -51,18 +51,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 7_038 nanoseconds. // Minimum execution time: 7_038 nanoseconds.
Weight::from_ref_time(14_201_154) Weight::from_parts(14_201_154, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_273 // Standard Error: 3_273
.saturating_add(Weight::from_ref_time(4_845_639).saturating_mul(c.into())) .saturating_add(Weight::from_parts(4_845_639, 0).saturating_mul(c.into()))
} }
fn as_derivative() -> Weight { fn as_derivative() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 4_899 nanoseconds. // Minimum execution time: 4_899 nanoseconds.
Weight::from_ref_time(5_052_000) Weight::from_parts(5_052_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `c` is `[0, 1000]`. /// The range of component `c` is `[0, 1000]`.
fn batch_all(c: u32, ) -> Weight { fn batch_all(c: u32, ) -> Weight {
@@ -70,18 +70,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_792 nanoseconds. // Minimum execution time: 6_792 nanoseconds.
Weight::from_ref_time(14_264_895) Weight::from_parts(14_264_895, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_467 // Standard Error: 3_467
.saturating_add(Weight::from_ref_time(5_166_200).saturating_mul(c.into())) .saturating_add(Weight::from_parts(5_166_200, 0).saturating_mul(c.into()))
} }
fn dispatch_as() -> Weight { fn dispatch_as() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 8_890 nanoseconds. // Minimum execution time: 8_890 nanoseconds.
Weight::from_ref_time(9_103_000) Weight::from_parts(9_103_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// The range of component `c` is `[0, 1000]`. /// The range of component `c` is `[0, 1000]`.
fn force_batch(c: u32, ) -> Weight { fn force_batch(c: u32, ) -> Weight {
@@ -89,9 +89,9 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 6_910 nanoseconds. // Minimum execution time: 6_910 nanoseconds.
Weight::from_ref_time(13_514_252) Weight::from_parts(13_514_252, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_640 // Standard Error: 3_640
.saturating_add(Weight::from_ref_time(4_839_844).saturating_mul(c.into())) .saturating_add(Weight::from_parts(4_839_844, 0).saturating_mul(c.into()))
} }
} }
@@ -56,12 +56,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `377 + l * (25 ±0) + s * (36 ±0)` // Measured: `377 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306` // Estimated: `7306`
// Minimum execution time: 30_459 nanoseconds. // Minimum execution time: 30_459 nanoseconds.
Weight::from_ref_time(29_414_981) Weight::from_parts(29_414_981, 0)
.saturating_add(Weight::from_proof_size(7306)) .saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 853 // Standard Error: 853
.saturating_add(Weight::from_ref_time(44_483).saturating_mul(l.into())) .saturating_add(Weight::from_parts(44_483, 0).saturating_mul(l.into()))
// Standard Error: 1_518 // Standard Error: 1_518
.saturating_add(Weight::from_ref_time(64_668).saturating_mul(s.into())) .saturating_add(Weight::from_parts(64_668, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -76,12 +76,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `377 + l * (25 ±0) + s * (36 ±0)` // Measured: `377 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306` // Estimated: `7306`
// Minimum execution time: 29_310 nanoseconds. // Minimum execution time: 29_310 nanoseconds.
Weight::from_ref_time(29_062_397) Weight::from_parts(29_062_397, 0)
.saturating_add(Weight::from_proof_size(7306)) .saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 877 // Standard Error: 877
.saturating_add(Weight::from_ref_time(36_222).saturating_mul(l.into())) .saturating_add(Weight::from_parts(36_222, 0).saturating_mul(l.into()))
// Standard Error: 1_562 // Standard Error: 1_562
.saturating_add(Weight::from_ref_time(42_827).saturating_mul(s.into())) .saturating_add(Weight::from_parts(42_827, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -98,12 +98,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `512 + l * (25 ±0) + s * (36 ±0)` // Measured: `512 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 32_792 nanoseconds. // Minimum execution time: 32_792 nanoseconds.
Weight::from_ref_time(32_223_934) Weight::from_parts(32_223_934, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 833 // Standard Error: 833
.saturating_add(Weight::from_ref_time(46_218).saturating_mul(l.into())) .saturating_add(Weight::from_parts(46_218, 0).saturating_mul(l.into()))
// Standard Error: 1_483 // Standard Error: 1_483
.saturating_add(Weight::from_ref_time(68_198).saturating_mul(s.into())) .saturating_add(Weight::from_parts(68_198, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -120,12 +120,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `512 + l * (25 ±0) + s * (36 ±0)` // Measured: `512 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 32_330 nanoseconds. // Minimum execution time: 32_330 nanoseconds.
Weight::from_ref_time(31_644_065) Weight::from_parts(31_644_065, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 887 // Standard Error: 887
.saturating_add(Weight::from_ref_time(43_137).saturating_mul(l.into())) .saturating_add(Weight::from_parts(43_137, 0).saturating_mul(l.into()))
// Standard Error: 1_578 // Standard Error: 1_578
.saturating_add(Weight::from_ref_time(55_494).saturating_mul(s.into())) .saturating_add(Weight::from_parts(55_494, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -142,12 +142,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `583 + l * (25 ±0) + s * (36 ±0)` // Measured: `583 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 47_622 nanoseconds. // Minimum execution time: 47_622 nanoseconds.
Weight::from_ref_time(47_953_546) Weight::from_parts(47_953_546, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 2_056 // Standard Error: 2_056
.saturating_add(Weight::from_ref_time(39_785).saturating_mul(l.into())) .saturating_add(Weight::from_parts(39_785, 0).saturating_mul(l.into()))
// Standard Error: 3_659 // Standard Error: 3_659
.saturating_add(Weight::from_ref_time(41_672).saturating_mul(s.into())) .saturating_add(Weight::from_parts(41_672, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -164,12 +164,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `718 + l * (25 ±0) + s * (36 ±0)` // Measured: `718 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `12512` // Estimated: `12512`
// Minimum execution time: 50_175 nanoseconds. // Minimum execution time: 50_175 nanoseconds.
Weight::from_ref_time(50_736_243) Weight::from_parts(50_736_243, 0)
.saturating_add(Weight::from_proof_size(12512)) .saturating_add(Weight::from_parts(0, 12512))
// Standard Error: 4_214 // Standard Error: 4_214
.saturating_add(Weight::from_ref_time(36_528).saturating_mul(l.into())) .saturating_add(Weight::from_parts(36_528, 0).saturating_mul(l.into()))
// Standard Error: 7_498 // Standard Error: 7_498
.saturating_add(Weight::from_ref_time(48_527).saturating_mul(s.into())) .saturating_add(Weight::from_parts(48_527, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -186,12 +186,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `510 + l * (25 ±0) + s * (36 ±0)` // Measured: `510 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 33_600 nanoseconds. // Minimum execution time: 33_600 nanoseconds.
Weight::from_ref_time(32_676_944) Weight::from_parts(32_676_944, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 1_328 // Standard Error: 1_328
.saturating_add(Weight::from_ref_time(51_061).saturating_mul(l.into())) .saturating_add(Weight::from_parts(51_061, 0).saturating_mul(l.into()))
// Standard Error: 2_452 // Standard Error: 2_452
.saturating_add(Weight::from_ref_time(79_609).saturating_mul(s.into())) .saturating_add(Weight::from_parts(79_609, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -208,12 +208,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `510 + l * (25 ±0) + s * (36 ±0)` // Measured: `510 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909` // Estimated: `9909`
// Minimum execution time: 34_035 nanoseconds. // Minimum execution time: 34_035 nanoseconds.
Weight::from_ref_time(33_098_531) Weight::from_parts(33_098_531, 0)
.saturating_add(Weight::from_proof_size(9909)) .saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 838 // Standard Error: 838
.saturating_add(Weight::from_ref_time(46_629).saturating_mul(l.into())) .saturating_add(Weight::from_parts(46_629, 0).saturating_mul(l.into()))
// Standard Error: 1_548 // Standard Error: 1_548
.saturating_add(Weight::from_ref_time(72_485).saturating_mul(s.into())) .saturating_add(Weight::from_parts(72_485, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -62,8 +62,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `470` // Measured: `470`
// Estimated: `11730` // Estimated: `11730`
// Minimum execution time: 37_334 nanoseconds. // Minimum execution time: 37_334 nanoseconds.
Weight::from_ref_time(37_920_000) Weight::from_parts(37_920_000, 0)
.saturating_add(Weight::from_proof_size(11730)) .saturating_add(Weight::from_parts(0, 11730))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -72,16 +72,16 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 25_178 nanoseconds. // Minimum execution time: 25_178 nanoseconds.
Weight::from_ref_time(25_519_000) Weight::from_parts(25_519_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
fn reserve_transfer_assets() -> Weight { fn reserve_transfer_assets() -> Weight {
// Proof Size summary in bytes: // Proof Size summary in bytes:
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 23_763 nanoseconds. // Minimum execution time: 23_763 nanoseconds.
Weight::from_ref_time(24_214_000) Weight::from_parts(24_214_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Benchmark Override (r:0 w:0) /// Storage: Benchmark Override (r:0 w:0)
/// Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured)
@@ -90,8 +90,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 18_446_744_073_709_551 nanoseconds. // Minimum execution time: 18_446_744_073_709_551 nanoseconds.
Weight::from_ref_time(18_446_744_073_709_551_000) Weight::from_parts(18_446_744_073_709_551_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: XcmPallet SupportedVersion (r:0 w:1) /// Storage: XcmPallet SupportedVersion (r:0 w:1)
/// Proof Skipped: XcmPallet SupportedVersion (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: XcmPallet SupportedVersion (max_values: None, max_size: None, mode: Measured)
@@ -100,8 +100,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 9_987 nanoseconds. // Minimum execution time: 9_987 nanoseconds.
Weight::from_ref_time(10_249_000) Weight::from_parts(10_249_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: XcmPallet SafeXcmVersion (r:0 w:1) /// Storage: XcmPallet SafeXcmVersion (r:0 w:1)
@@ -111,8 +111,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_604 nanoseconds. // Minimum execution time: 2_604 nanoseconds.
Weight::from_ref_time(2_783_000) Weight::from_parts(2_783_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: XcmPallet VersionNotifiers (r:1 w:1) /// Storage: XcmPallet VersionNotifiers (r:1 w:1)
@@ -138,8 +138,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `470` // Measured: `470`
// Estimated: `16110` // Estimated: `16110`
// Minimum execution time: 41_261 nanoseconds. // Minimum execution time: 41_261 nanoseconds.
Weight::from_ref_time(42_307_000) Weight::from_parts(42_307_000, 0)
.saturating_add(Weight::from_proof_size(16110)) .saturating_add(Weight::from_parts(0, 16110))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -164,8 +164,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `742` // Measured: `742`
// Estimated: `17321` // Estimated: `17321`
// Minimum execution time: 43_993 nanoseconds. // Minimum execution time: 43_993 nanoseconds.
Weight::from_ref_time(44_583_000) Weight::from_parts(44_583_000, 0)
.saturating_add(Weight::from_proof_size(17321)) .saturating_add(Weight::from_parts(0, 17321))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -176,8 +176,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `229` // Measured: `229`
// Estimated: `10129` // Estimated: `10129`
// Minimum execution time: 16_945 nanoseconds. // Minimum execution time: 16_945 nanoseconds.
Weight::from_ref_time(17_320_000) Weight::from_parts(17_320_000, 0)
.saturating_add(Weight::from_proof_size(10129)) .saturating_add(Weight::from_parts(0, 10129))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -188,8 +188,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `233` // Measured: `233`
// Estimated: `10133` // Estimated: `10133`
// Minimum execution time: 16_857 nanoseconds. // Minimum execution time: 16_857 nanoseconds.
Weight::from_ref_time(17_251_000) Weight::from_parts(17_251_000, 0)
.saturating_add(Weight::from_proof_size(10133)) .saturating_add(Weight::from_parts(0, 10133))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -200,8 +200,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `243` // Measured: `243`
// Estimated: `12618` // Estimated: `12618`
// Minimum execution time: 19_594 nanoseconds. // Minimum execution time: 19_594 nanoseconds.
Weight::from_ref_time(20_088_000) Weight::from_parts(20_088_000, 0)
.saturating_add(Weight::from_proof_size(12618)) .saturating_add(Weight::from_parts(0, 12618))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
} }
/// Storage: XcmPallet VersionNotifyTargets (r:2 w:1) /// Storage: XcmPallet VersionNotifyTargets (r:2 w:1)
@@ -223,8 +223,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `540` // Measured: `540`
// Estimated: `17640` // Estimated: `17640`
// Minimum execution time: 39_047 nanoseconds. // Minimum execution time: 39_047 nanoseconds.
Weight::from_ref_time(39_491_000) Weight::from_parts(39_491_000, 0)
.saturating_add(Weight::from_proof_size(17640)) .saturating_add(Weight::from_parts(0, 17640))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -235,8 +235,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `272` // Measured: `272`
// Estimated: `7697` // Estimated: `7697`
// Minimum execution time: 8_462 nanoseconds. // Minimum execution time: 8_462 nanoseconds.
Weight::from_ref_time(8_769_000) Weight::from_parts(8_769_000, 0)
.saturating_add(Weight::from_proof_size(7697)) .saturating_add(Weight::from_parts(0, 7697))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
} }
/// Storage: XcmPallet VersionNotifyTargets (r:4 w:2) /// Storage: XcmPallet VersionNotifyTargets (r:4 w:2)
@@ -246,8 +246,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `240` // Measured: `240`
// Estimated: `10140` // Estimated: `10140`
// Minimum execution time: 17_774 nanoseconds. // Minimum execution time: 17_774 nanoseconds.
Weight::from_ref_time(18_055_000) Weight::from_parts(18_055_000, 0)
.saturating_add(Weight::from_proof_size(10140)) .saturating_add(Weight::from_parts(0, 10140))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -270,8 +270,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `544` // Measured: `544`
// Estimated: `22618` // Estimated: `22618`
// Minimum execution time: 44_737 nanoseconds. // Minimum execution time: 44_737 nanoseconds.
Weight::from_ref_time(45_471_000) Weight::from_parts(45_471_000, 0)
.saturating_add(Weight::from_proof_size(22618)) .saturating_add(Weight::from_parts(0, 22618))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `4` // Measured: `4`
// Estimated: `1002` // Estimated: `1002`
// Minimum execution time: 13_702 nanoseconds. // Minimum execution time: 13_702 nanoseconds.
Weight::from_ref_time(14_131_000) Weight::from_parts(14_131_000, 0)
.saturating_add(Weight::from_proof_size(1002)) .saturating_add(Weight::from_parts(0, 1002))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `725` // Measured: `725`
// Estimated: `19470` // Estimated: `19470`
// Minimum execution time: 74_041 nanoseconds. // Minimum execution time: 74_041 nanoseconds.
Weight::from_ref_time(76_382_000) Weight::from_parts(76_382_000, 0)
.saturating_add(Weight::from_proof_size(19470)) .saturating_add(Weight::from_parts(0, 19470))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `7060445` // Measured: `7060445`
// Estimated: `51339005` // Estimated: `51339005`
// Minimum execution time: 15_737_440 nanoseconds. // Minimum execution time: 15_737_440 nanoseconds.
Weight::from_ref_time(15_967_121_000) Weight::from_parts(15_967_121_000, 0)
.saturating_add(Weight::from_proof_size(51339005)) .saturating_add(Weight::from_parts(0, 51339005))
.saturating_add(T::DbWeight::get().reads(3688)) .saturating_add(T::DbWeight::get().reads(3688))
.saturating_add(T::DbWeight::get().writes(3683)) .saturating_add(T::DbWeight::get().writes(3683))
} }
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `178884` // Measured: `178884`
// Estimated: `16009503` // Estimated: `16009503`
// Minimum execution time: 4_819_822 nanoseconds. // Minimum execution time: 4_819_822 nanoseconds.
Weight::from_ref_time(4_990_219_000) Weight::from_parts(4_990_219_000, 0)
.saturating_add(Weight::from_proof_size(16009503)) .saturating_add(Weight::from_parts(0, 16009503))
.saturating_add(T::DbWeight::get().reads(3673)) .saturating_add(T::DbWeight::get().reads(3673))
.saturating_add(T::DbWeight::get().writes(3673)) .saturating_add(T::DbWeight::get().writes(3673))
} }
@@ -64,8 +64,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `618` // Measured: `618`
// Estimated: `20301` // Estimated: `20301`
// Minimum execution time: 143_551 nanoseconds. // Minimum execution time: 143_551 nanoseconds.
Weight::from_ref_time(147_538_000) Weight::from_parts(147_538_000, 0)
.saturating_add(Weight::from_proof_size(20301)) .saturating_add(Weight::from_parts(0, 20301))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -82,8 +82,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `182` // Measured: `182`
// Estimated: `1223` // Estimated: `1223`
// Minimum execution time: 10_986 nanoseconds. // Minimum execution time: 10_986 nanoseconds.
Weight::from_ref_time(11_519_000) Weight::from_parts(11_519_000, 0)
.saturating_add(Weight::from_proof_size(1223)) .saturating_add(Weight::from_parts(0, 1223))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -106,8 +106,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `618` // Measured: `618`
// Estimated: `20301` // Estimated: `20301`
// Minimum execution time: 146_443 nanoseconds. // Minimum execution time: 146_443 nanoseconds.
Weight::from_ref_time(150_592_000) Weight::from_parts(150_592_000, 0)
.saturating_add(Weight::from_proof_size(20301)) .saturating_add(Weight::from_parts(0, 20301))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -132,8 +132,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `692` // Measured: `692`
// Estimated: `23764` // Estimated: `23764`
// Minimum execution time: 69_307 nanoseconds. // Minimum execution time: 69_307 nanoseconds.
Weight::from_ref_time(84_145_000) Weight::from_parts(84_145_000, 0)
.saturating_add(Weight::from_proof_size(23764)) .saturating_add(Weight::from_parts(0, 23764))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -150,8 +150,8 @@ impl<T: frame_system::Config> runtime_common::claims::WeightInfo for WeightInfo<
// Measured: `438` // Measured: `438`
// Estimated: `11652` // Estimated: `11652`
// Minimum execution time: 22_152 nanoseconds. // Minimum execution time: 22_152 nanoseconds.
Weight::from_ref_time(22_926_000) Weight::from_parts(22_926_000, 0)
.saturating_add(Weight::from_proof_size(11652)) .saturating_add(Weight::from_parts(0, 11652))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `395` // Measured: `395`
// Estimated: `9500` // Estimated: `9500`
// Minimum execution time: 39_775 nanoseconds. // Minimum execution time: 39_775 nanoseconds.
Weight::from_ref_time(40_606_000) Weight::from_parts(40_606_000, 0)
.saturating_add(Weight::from_proof_size(9500)) .saturating_add(Weight::from_parts(0, 9500))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `407` // Measured: `407`
// Estimated: `14067` // Estimated: `14067`
// Minimum execution time: 116_028 nanoseconds. // Minimum execution time: 116_028 nanoseconds.
Weight::from_ref_time(117_110_000) Weight::from_parts(117_110_000, 0)
.saturating_add(Weight::from_proof_size(14067)) .saturating_add(Weight::from_parts(0, 14067))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `786` // Measured: `786`
// Estimated: `12239` // Estimated: `12239`
// Minimum execution time: 57_368 nanoseconds. // Minimum execution time: 57_368 nanoseconds.
Weight::from_ref_time(58_291_000) Weight::from_parts(58_291_000, 0)
.saturating_add(Weight::from_proof_size(12239)) .saturating_add(Weight::from_parts(0, 12239))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -115,15 +115,15 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `191 + k * (221 ±0)` // Measured: `191 + k * (221 ±0)`
// Estimated: `196 + k * (221 ±0)` // Estimated: `196 + k * (221 ±0)`
// Minimum execution time: 38_405 nanoseconds. // Minimum execution time: 38_405 nanoseconds.
Weight::from_ref_time(53_604_000) Weight::from_parts(53_604_000, 0)
.saturating_add(Weight::from_proof_size(196)) .saturating_add(Weight::from_parts(0, 196))
// Standard Error: 13_955 // Standard Error: 13_955
.saturating_add(Weight::from_ref_time(23_725_495).saturating_mul(k.into())) .saturating_add(Weight::from_parts(23_725_495, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(221).saturating_mul(k.into())) .saturating_add(Weight::from_parts(0, 221).saturating_mul(k.into()))
} }
/// Storage: Crowdloan Funds (r:1 w:1) /// Storage: Crowdloan Funds (r:1 w:1)
/// Proof Skipped: Crowdloan Funds (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Crowdloan Funds (max_values: None, max_size: None, mode: Measured)
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `439` // Measured: `439`
// Estimated: `5517` // Estimated: `5517`
// Minimum execution time: 28_816 nanoseconds. // Minimum execution time: 28_816 nanoseconds.
Weight::from_ref_time(29_449_000) Weight::from_parts(29_449_000, 0)
.saturating_add(Weight::from_proof_size(5517)) .saturating_add(Weight::from_parts(0, 5517))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -146,8 +146,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `267` // Measured: `267`
// Estimated: `2742` // Estimated: `2742`
// Minimum execution time: 17_666 nanoseconds. // Minimum execution time: 17_666 nanoseconds.
Weight::from_ref_time(18_315_000) Weight::from_parts(18_315_000, 0)
.saturating_add(Weight::from_proof_size(2742)) .saturating_add(Weight::from_parts(0, 2742))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -160,8 +160,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `444` // Measured: `444`
// Estimated: `5838` // Estimated: `5838`
// Minimum execution time: 24_524 nanoseconds. // Minimum execution time: 24_524 nanoseconds.
Weight::from_ref_time(24_958_000) Weight::from_parts(24_958_000, 0)
.saturating_add(Weight::from_proof_size(5838)) .saturating_add(Weight::from_parts(0, 5838))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -174,8 +174,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `271` // Measured: `271`
// Estimated: `3512` // Estimated: `3512`
// Minimum execution time: 17_467 nanoseconds. // Minimum execution time: 17_467 nanoseconds.
Weight::from_ref_time(17_772_000) Weight::from_parts(17_772_000, 0)
.saturating_add(Weight::from_proof_size(3512)) .saturating_add(Weight::from_parts(0, 3512))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -205,14 +205,14 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `157 + n * (420 ±0)` // Measured: `157 + n * (420 ±0)`
// Estimated: `7142 + n * (14663 ±0)` // Estimated: `7142 + n * (14663 ±0)`
// Minimum execution time: 112_481 nanoseconds. // Minimum execution time: 112_481 nanoseconds.
Weight::from_ref_time(113_770_000) Weight::from_parts(113_770_000, 0)
.saturating_add(Weight::from_proof_size(7142)) .saturating_add(Weight::from_parts(0, 7142))
// Standard Error: 50_565 // Standard Error: 50_565
.saturating_add(Weight::from_ref_time(51_191_368).saturating_mul(n.into())) .saturating_add(Weight::from_parts(51_191_368, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(14663).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 14663).saturating_mul(n.into()))
} }
} }
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `70` // Measured: `70`
// Estimated: `5655` // Estimated: `5655`
// Minimum execution time: 25_903 nanoseconds. // Minimum execution time: 25_903 nanoseconds.
Weight::from_ref_time(26_325_000) Weight::from_parts(26_325_000, 0)
.saturating_add(Weight::from_proof_size(5655)) .saturating_add(Weight::from_parts(0, 5655))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -86,8 +86,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `561` // Measured: `561`
// Estimated: `21450` // Estimated: `21450`
// Minimum execution time: 7_553_331 nanoseconds. // Minimum execution time: 7_553_331 nanoseconds.
Weight::from_ref_time(7_726_216_000) Weight::from_parts(7_726_216_000, 0)
.saturating_add(Weight::from_proof_size(21450)) .saturating_add(Weight::from_parts(0, 21450))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -116,8 +116,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `419` // Measured: `419`
// Estimated: `20030` // Estimated: `20030`
// Minimum execution time: 7_582_213 nanoseconds. // Minimum execution time: 7_582_213 nanoseconds.
Weight::from_ref_time(7_756_452_000) Weight::from_parts(7_756_452_000, 0)
.saturating_add(Weight::from_proof_size(20030)) .saturating_add(Weight::from_parts(0, 20030))
.saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes(7))
} }
@@ -138,8 +138,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `467` // Measured: `467`
// Estimated: `13197` // Estimated: `13197`
// Minimum execution time: 41_148 nanoseconds. // Minimum execution time: 41_148 nanoseconds.
Weight::from_ref_time(42_082_000) Weight::from_parts(42_082_000, 0)
.saturating_add(Weight::from_proof_size(13197)) .saturating_add(Weight::from_parts(0, 13197))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -162,8 +162,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `707` // Measured: `707`
// Estimated: `27719` // Estimated: `27719`
// Minimum execution time: 46_614 nanoseconds. // Minimum execution time: 46_614 nanoseconds.
Weight::from_ref_time(48_057_000) Weight::from_parts(48_057_000, 0)
.saturating_add(Weight::from_proof_size(27719)) .saturating_add(Weight::from_parts(0, 27719))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -195,10 +195,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `287` // Measured: `287`
// Estimated: `19987` // Estimated: `19987`
// Minimum execution time: 43_351 nanoseconds. // Minimum execution time: 43_351 nanoseconds.
Weight::from_ref_time(43_888_000) Weight::from_parts(43_888_000, 0)
.saturating_add(Weight::from_proof_size(19987)) .saturating_add(Weight::from_parts(0, 19987))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_391).saturating_mul(b.into())) .saturating_add(Weight::from_parts(2_391, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -210,10 +210,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 8_863 nanoseconds. // Minimum execution time: 8_863 nanoseconds.
Weight::from_ref_time(9_010_000) Weight::from_parts(9_010_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(969).saturating_mul(b.into())) .saturating_add(Weight::from_parts(969, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `252` // Measured: `252`
// Estimated: `5330` // Estimated: `5330`
// Minimum execution time: 27_189 nanoseconds. // Minimum execution time: 27_189 nanoseconds.
Weight::from_ref_time(27_647_000) Weight::from_parts(27_647_000, 0)
.saturating_add(Weight::from_proof_size(5330)) .saturating_add(Weight::from_parts(0, 5330))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -78,20 +78,20 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `7 + c * (47 ±0) + t * (370 ±0)` // Measured: `7 + c * (47 ±0) + t * (370 ±0)`
// Estimated: `268843 + c * (1073 ±28) + t * (7960 ±28)` // Estimated: `268843 + c * (1073 ±28) + t * (7960 ±28)`
// Minimum execution time: 650_409 nanoseconds. // Minimum execution time: 650_409 nanoseconds.
Weight::from_ref_time(654_044_000) Weight::from_parts(654_044_000, 0)
.saturating_add(Weight::from_proof_size(268843)) .saturating_add(Weight::from_parts(0, 268843))
// Standard Error: 84_472 // Standard Error: 84_472
.saturating_add(Weight::from_ref_time(2_777_757).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_777_757, 0).saturating_mul(c.into()))
// Standard Error: 84_472 // Standard Error: 84_472
.saturating_add(Weight::from_ref_time(14_083_849).saturating_mul(t.into())) .saturating_add(Weight::from_parts(14_083_849, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(t.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(t.into())))
.saturating_add(Weight::from_proof_size(1073).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 1073).saturating_mul(c.into()))
.saturating_add(Weight::from_proof_size(7960).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 7960).saturating_mul(t.into()))
} }
/// Storage: Slots Leases (r:1 w:1) /// Storage: Slots Leases (r:1 w:1)
/// Proof Skipped: Slots Leases (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Slots Leases (max_values: None, max_size: None, mode: Measured)
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `2980` // Measured: `2980`
// Estimated: `26279` // Estimated: `26279`
// Minimum execution time: 102_653 nanoseconds. // Minimum execution time: 102_653 nanoseconds.
Weight::from_ref_time(103_775_000) Weight::from_parts(103_775_000, 0)
.saturating_add(Weight::from_proof_size(26279)) .saturating_add(Weight::from_parts(0, 26279))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(9)) .saturating_add(T::DbWeight::get().writes(9))
} }
@@ -122,8 +122,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `644` // Measured: `644`
// Estimated: `13615` // Estimated: `13615`
// Minimum execution time: 28_412 nanoseconds. // Minimum execution time: 28_412 nanoseconds.
Weight::from_ref_time(29_072_000) Weight::from_parts(29_072_000, 0)
.saturating_add(Weight::from_proof_size(13615)) .saturating_add(Weight::from_parts(0, 13615))
.saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `349` // Measured: `349`
// Estimated: `3376` // Estimated: `3376`
// Minimum execution time: 11_910 nanoseconds. // Minimum execution time: 11_910 nanoseconds.
Weight::from_ref_time(12_346_000) Weight::from_parts(12_346_000, 0)
.saturating_add(Weight::from_proof_size(3376)) .saturating_add(Weight::from_parts(0, 3376))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `349` // Measured: `349`
// Estimated: `3376` // Estimated: `3376`
// Minimum execution time: 11_842 nanoseconds. // Minimum execution time: 11_842 nanoseconds.
Weight::from_ref_time(12_456_000) Weight::from_parts(12_456_000, 0)
.saturating_add(Weight::from_proof_size(3376)) .saturating_add(Weight::from_parts(0, 3376))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -94,8 +94,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `349` // Measured: `349`
// Estimated: `3376` // Estimated: `3376`
// Minimum execution time: 12_093 nanoseconds. // Minimum execution time: 12_093 nanoseconds.
Weight::from_ref_time(12_420_000) Weight::from_parts(12_420_000, 0)
.saturating_add(Weight::from_proof_size(3376)) .saturating_add(Weight::from_parts(0, 3376))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `349` // Measured: `349`
// Estimated: `3376` // Estimated: `3376`
// Minimum execution time: 11_996 nanoseconds. // Minimum execution time: 11_996 nanoseconds.
Weight::from_ref_time(12_626_000) Weight::from_parts(12_626_000, 0)
.saturating_add(Weight::from_proof_size(3376)) .saturating_add(Weight::from_parts(0, 3376))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -124,8 +124,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_000_000_000 nanoseconds. // Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000) Weight::from_parts(2_000_000_000_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
} }
/// Storage: Configuration PendingConfigs (r:1 w:1) /// Storage: Configuration PendingConfigs (r:1 w:1)
/// Proof Skipped: Configuration PendingConfigs (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Configuration PendingConfigs (max_values: Some(1), max_size: None, mode: Measured)
@@ -140,8 +140,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `349` // Measured: `349`
// Estimated: `3376` // Estimated: `3376`
// Minimum execution time: 12_296 nanoseconds. // Minimum execution time: 12_296 nanoseconds.
Weight::from_ref_time(12_553_000) Weight::from_parts(12_553_000, 0)
.saturating_add(Weight::from_proof_size(3376)) .saturating_add(Weight::from_parts(0, 3376))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> runtime_parachains::disputes::WeightInfo for Weigh
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 2_694 nanoseconds. // Minimum execution time: 2_694 nanoseconds.
Weight::from_ref_time(2_819_000) Weight::from_parts(2_819_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
} }
@@ -68,8 +68,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `609` // Measured: `609`
// Estimated: `26271` // Estimated: `26271`
// Minimum execution time: 41_409 nanoseconds. // Minimum execution time: 41_409 nanoseconds.
Weight::from_ref_time(41_949_000) Weight::from_parts(41_949_000, 0)
.saturating_add(Weight::from_proof_size(26271)) .saturating_add(Weight::from_parts(0, 26271))
.saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(5)) .saturating_add(T::DbWeight::get().writes(5))
} }
@@ -92,8 +92,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `873` // Measured: `873`
// Estimated: `21456` // Estimated: `21456`
// Minimum execution time: 41_061 nanoseconds. // Minimum execution time: 41_061 nanoseconds.
Weight::from_ref_time(41_725_000) Weight::from_parts(41_725_000, 0)
.saturating_add(Weight::from_proof_size(21456)) .saturating_add(Weight::from_parts(0, 21456))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -114,8 +114,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `744` // Measured: `744`
// Estimated: `15354` // Estimated: `15354`
// Minimum execution time: 37_443 nanoseconds. // Minimum execution time: 37_443 nanoseconds.
Weight::from_ref_time(40_253_000) Weight::from_parts(40_253_000, 0)
.saturating_add(Weight::from_proof_size(15354)) .saturating_add(Weight::from_parts(0, 15354))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
} }
@@ -138,20 +138,20 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `254 + i * (131 ±0) + e * (131 ±0)` // Measured: `254 + i * (131 ±0) + e * (131 ±0)`
// Estimated: `6354 + i * (5742 ±0) + e * (5736 ±0)` // Estimated: `6354 + i * (5742 ±0) + e * (5736 ±0)`
// Minimum execution time: 1_095_305 nanoseconds. // Minimum execution time: 1_095_305 nanoseconds.
Weight::from_ref_time(1_102_171_000) Weight::from_parts(1_102_171_000, 0)
.saturating_add(Weight::from_proof_size(6354)) .saturating_add(Weight::from_parts(0, 6354))
// Standard Error: 98_328 // Standard Error: 98_328
.saturating_add(Weight::from_ref_time(3_222_513).saturating_mul(i.into())) .saturating_add(Weight::from_parts(3_222_513, 0).saturating_mul(i.into()))
// Standard Error: 98_328 // Standard Error: 98_328
.saturating_add(Weight::from_ref_time(3_343_772).saturating_mul(e.into())) .saturating_add(Weight::from_parts(3_343_772, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(e.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(e.into())))
.saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(e.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(e.into())))
.saturating_add(Weight::from_proof_size(5742).saturating_mul(i.into())) .saturating_add(Weight::from_parts(0, 5742).saturating_mul(i.into()))
.saturating_add(Weight::from_proof_size(5736).saturating_mul(e.into())) .saturating_add(Weight::from_parts(0, 5736).saturating_mul(e.into()))
} }
/// Storage: Configuration ActiveConfig (r:1 w:0) /// Storage: Configuration ActiveConfig (r:1 w:0)
/// Proof Skipped: Configuration ActiveConfig (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Configuration ActiveConfig (max_values: Some(1), max_size: None, mode: Measured)
@@ -177,15 +177,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `725 + c * (166 ±0)` // Measured: `725 + c * (166 ±0)`
// Estimated: `7371 + c * (18828 ±0)` // Estimated: `7371 + c * (18828 ±0)`
// Minimum execution time: 9_405 nanoseconds. // Minimum execution time: 9_405 nanoseconds.
Weight::from_ref_time(4_666_821) Weight::from_parts(4_666_821, 0)
.saturating_add(Weight::from_proof_size(7371)) .saturating_add(Weight::from_parts(0, 7371))
// Standard Error: 21_110 // Standard Error: 21_110
.saturating_add(Weight::from_ref_time(18_925_237).saturating_mul(c.into())) .saturating_add(Weight::from_parts(18_925_237, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((6_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((6_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(18828).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 18828).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpCloseChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpCloseChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpCloseChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpCloseChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -205,15 +205,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `307 + c * (155 ±0)` // Measured: `307 + c * (155 ±0)`
// Estimated: `2232 + c * (8361 ±0)` // Estimated: `2232 + c * (8361 ±0)`
// Minimum execution time: 6_303 nanoseconds. // Minimum execution time: 6_303 nanoseconds.
Weight::from_ref_time(3_137_132) Weight::from_parts(3_137_132, 0)
.saturating_add(Weight::from_proof_size(2232)) .saturating_add(Weight::from_parts(0, 2232))
// Standard Error: 14_988 // Standard Error: 14_988
.saturating_add(Weight::from_ref_time(11_754_128).saturating_mul(c.into())) .saturating_add(Weight::from_parts(11_754_128, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(8361).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 8361).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -227,13 +227,13 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `1022 + c * (13 ±0)` // Measured: `1022 + c * (13 ±0)`
// Estimated: `7911 + c * (45 ±0)` // Estimated: `7911 + c * (45 ±0)`
// Minimum execution time: 21_716 nanoseconds. // Minimum execution time: 21_716 nanoseconds.
Weight::from_ref_time(26_754_962) Weight::from_parts(26_754_962, 0)
.saturating_add(Weight::from_proof_size(7911)) .saturating_add(Weight::from_parts(0, 7911))
// Standard Error: 1_244 // Standard Error: 1_244
.saturating_add(Weight::from_ref_time(58_005).saturating_mul(c.into())) .saturating_add(Weight::from_parts(58_005, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(45).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 45).saturating_mul(c.into()))
} }
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1) /// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured) /// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -245,15 +245,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `217 + c * (94 ±0)` // Measured: `217 + c * (94 ±0)`
// Estimated: `912 + c * (2664 ±0)` // Estimated: `912 + c * (2664 ±0)`
// Minimum execution time: 5_229 nanoseconds. // Minimum execution time: 5_229 nanoseconds.
Weight::from_ref_time(4_661_405) Weight::from_parts(4_661_405, 0)
.saturating_add(Weight::from_proof_size(912)) .saturating_add(Weight::from_parts(0, 912))
// Standard Error: 3_567 // Standard Error: 3_567
.saturating_add(Weight::from_ref_time(3_157_636).saturating_mul(c.into())) .saturating_add(Weight::from_parts(3_157_636, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(2664).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 2664).saturating_mul(c.into()))
} }
/// Storage: Paras ParaLifecycles (r:2 w:0) /// Storage: Paras ParaLifecycles (r:2 w:0)
/// Proof Skipped: Paras ParaLifecycles (max_values: None, max_size: None, mode: Measured) /// Proof Skipped: Paras ParaLifecycles (max_values: None, max_size: None, mode: Measured)
@@ -282,8 +282,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `609` // Measured: `609`
// Estimated: `37389` // Estimated: `37389`
// Minimum execution time: 54_228 nanoseconds. // Minimum execution time: 54_228 nanoseconds.
Weight::from_ref_time(54_782_000) Weight::from_parts(54_782_000, 0)
.saturating_add(Weight::from_proof_size(37389)) .saturating_add(Weight::from_parts(0, 37389))
.saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> runtime_parachains::initializer::WeightInfo for We
// Measured: `28 + d * (11 ±0)` // Measured: `28 + d * (11 ±0)`
// Estimated: `519 + d * (11 ±0)` // Estimated: `519 + d * (11 ±0)`
// Minimum execution time: 3_583 nanoseconds. // Minimum execution time: 3_583 nanoseconds.
Weight::from_ref_time(8_408_703) Weight::from_parts(8_408_703, 0)
.saturating_add(Weight::from_proof_size(519)) .saturating_add(Weight::from_parts(0, 519))
// Standard Error: 9 // Standard Error: 9
.saturating_add(Weight::from_ref_time(1_287).saturating_mul(d.into())) .saturating_add(Weight::from_parts(1_287, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(11).saturating_mul(d.into())) .saturating_add(Weight::from_parts(0, 11).saturating_mul(d.into()))
} }
} }
@@ -63,10 +63,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `8341` // Measured: `8341`
// Estimated: `57966` // Estimated: `57966`
// Minimum execution time: 33_964 nanoseconds. // Minimum execution time: 33_964 nanoseconds.
Weight::from_ref_time(34_183_000) Weight::from_parts(34_183_000, 0)
.saturating_add(Weight::from_proof_size(57966)) .saturating_add(Weight::from_parts(0, 57966))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_374).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_374, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes(6))
} }
@@ -78,10 +78,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `0` // Measured: `0`
// Estimated: `0` // Estimated: `0`
// Minimum execution time: 8_472 nanoseconds. // Minimum execution time: 8_472 nanoseconds.
Weight::from_ref_time(8_522_000) Weight::from_parts(8_522_000, 0)
.saturating_add(Weight::from_proof_size(0)) .saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(972).saturating_mul(s.into())) .saturating_add(Weight::from_parts(972, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
/// Storage: Configuration ActiveConfig (r:1 w:0) /// Storage: Configuration ActiveConfig (r:1 w:0)
@@ -112,10 +112,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `16785` // Measured: `16785`
// Estimated: `198990` // Estimated: `198990`
// Minimum execution time: 62_077 nanoseconds. // Minimum execution time: 62_077 nanoseconds.
Weight::from_ref_time(63_533_000) Weight::from_parts(63_533_000, 0)
.saturating_add(Weight::from_proof_size(198990)) .saturating_add(Weight::from_parts(0, 198990))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_397).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_397, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8)) .saturating_add(T::DbWeight::get().writes(8))
} }
@@ -131,10 +131,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `95` // Measured: `95`
// Estimated: `2760` // Estimated: `2760`
// Minimum execution time: 14_330 nanoseconds. // Minimum execution time: 14_330 nanoseconds.
Weight::from_ref_time(14_560_000) Weight::from_parts(14_560_000, 0)
.saturating_add(Weight::from_proof_size(2760)) .saturating_add(Weight::from_parts(0, 2760))
// Standard Error: 2 // Standard Error: 2
.saturating_add(Weight::from_ref_time(971).saturating_mul(s.into())) .saturating_add(Weight::from_parts(971, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes(2))
} }
@@ -147,8 +147,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `4283` // Measured: `4283`
// Estimated: `11536` // Estimated: `11536`
// Minimum execution time: 20_598 nanoseconds. // Minimum execution time: 20_598 nanoseconds.
Weight::from_ref_time(21_189_000) Weight::from_parts(21_189_000, 0)
.saturating_add(Weight::from_proof_size(11536)) .saturating_add(Weight::from_parts(0, 11536))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -162,10 +162,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28` // Measured: `28`
// Estimated: `5006` // Estimated: `5006`
// Minimum execution time: 8_753 nanoseconds. // Minimum execution time: 8_753 nanoseconds.
Weight::from_ref_time(8_999_000) Weight::from_parts(8_999_000, 0)
.saturating_add(Weight::from_proof_size(5006)) .saturating_add(Weight::from_parts(0, 5006))
// Standard Error: 1 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_375).saturating_mul(c.into())) .saturating_add(Weight::from_parts(2_375, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -178,8 +178,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28` // Measured: `28`
// Estimated: `2531` // Estimated: `2531`
// Minimum execution time: 6_338 nanoseconds. // Minimum execution time: 6_338 nanoseconds.
Weight::from_ref_time(6_709_000) Weight::from_parts(6_709_000, 0)
.saturating_add(Weight::from_proof_size(2531)) .saturating_add(Weight::from_parts(0, 2531))
.saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -196,8 +196,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26968` // Measured: `26968`
// Estimated: `111832` // Estimated: `111832`
// Minimum execution time: 92_190 nanoseconds. // Minimum execution time: 92_190 nanoseconds.
Weight::from_ref_time(94_190_000) Weight::from_parts(94_190_000, 0)
.saturating_add(Weight::from_proof_size(111832)) .saturating_add(Weight::from_parts(0, 111832))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -222,8 +222,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27554` // Measured: `27554`
// Estimated: `225877` // Estimated: `225877`
// Minimum execution time: 816_058 nanoseconds. // Minimum execution time: 816_058 nanoseconds.
Weight::from_ref_time(823_769_000) Weight::from_parts(823_769_000, 0)
.saturating_add(Weight::from_proof_size(225877)) .saturating_add(Weight::from_parts(0, 225877))
.saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(104)) .saturating_add(T::DbWeight::get().writes(104))
} }
@@ -240,8 +240,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27500` // Measured: `27500`
// Estimated: `113960` // Estimated: `113960`
// Minimum execution time: 91_497 nanoseconds. // Minimum execution time: 91_497 nanoseconds.
Weight::from_ref_time(93_349_000) Weight::from_parts(93_349_000, 0)
.saturating_add(Weight::from_proof_size(113960)) .saturating_add(Weight::from_parts(0, 113960))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }
@@ -262,8 +262,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27022` // Measured: `27022`
// Estimated: `169062` // Estimated: `169062`
// Minimum execution time: 643_156 nanoseconds. // Minimum execution time: 643_156 nanoseconds.
Weight::from_ref_time(648_775_000) Weight::from_parts(648_775_000, 0)
.saturating_add(Weight::from_proof_size(169062)) .saturating_add(Weight::from_parts(0, 169062))
.saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes(3))
} }
@@ -280,8 +280,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26968` // Measured: `26968`
// Estimated: `111832` // Estimated: `111832`
// Minimum execution time: 90_809 nanoseconds. // Minimum execution time: 90_809 nanoseconds.
Weight::from_ref_time(92_716_000) Weight::from_parts(92_716_000, 0)
.saturating_add(Weight::from_proof_size(111832)) .saturating_add(Weight::from_parts(0, 111832))
.saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes(1))
} }

Some files were not shown because too many files have changed in this diff Show More