From cd4c11fc3ff62bd6f1e1de593369f079fe9dbc05 Mon Sep 17 00:00:00 2001 From: command-bot <> Date: Thu, 23 Nov 2023 18:25:56 +0000 Subject: [PATCH] ".git/.scripts/commands/bench-all/bench-all.sh" --runtime=trappist --target_dir=trappist --- runtime/trappist/src/weights/block_weights.rs | 16 +- .../src/weights/cumulus_pallet_xcmp_queue.rs | 8 +- .../trappist/src/weights/extrinsic_weights.rs | 16 +- runtime/trappist/src/weights/frame_system.rs | 46 +- .../src/weights/pallet_asset_registry.rs | 8 +- runtime/trappist/src/weights/pallet_assets.rs | 152 ++--- .../trappist/src/weights/pallet_balances.rs | 34 +- .../src/weights/pallet_collator_selection.rs | 60 +- .../trappist/src/weights/pallet_collective.rs | 126 ++-- .../trappist/src/weights/pallet_contracts.rs | 606 +++++++++--------- .../trappist/src/weights/pallet_democracy.rs | 144 ++--- runtime/trappist/src/weights/pallet_dex.rs | 24 +- .../trappist/src/weights/pallet_identity.rs | 160 ++--- .../src/weights/pallet_lockdown_mode.rs | 8 +- .../trappist/src/weights/pallet_multisig.rs | 66 +- .../trappist/src/weights/pallet_preimage.rs | 56 +- .../trappist/src/weights/pallet_scheduler.rs | 72 +-- .../trappist/src/weights/pallet_session.rs | 8 +- .../trappist/src/weights/pallet_timestamp.rs | 8 +- .../trappist/src/weights/pallet_treasury.rs | 32 +- .../trappist/src/weights/pallet_uniques.rs | 120 ++-- .../trappist/src/weights/pallet_utility.rs | 32 +- .../src/weights/pallet_withdraw_teleport.rs | 4 +- .../weights/trappist_runtime_benchmarks.rs | 12 +- .../xcm/pallet_xcm_benchmarks_fungible.rs | 32 +- .../xcm/pallet_xcm_benchmarks_generic.rs | 112 ++-- 26 files changed, 983 insertions(+), 979 deletions(-) diff --git a/runtime/trappist/src/weights/block_weights.rs b/runtime/trappist/src/weights/block_weights.rs index dcfbd30c..354b0d05 100644 --- a/runtime/trappist/src/weights/block_weights.rs +++ b/runtime/trappist/src/weights/block_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 447_366, 526_695 - /// Average: 459_297 - /// Median: 457_640 - /// Std-Dev: 10132.49 + /// Min, Max: 441_980, 611_195 + /// Average: 453_516 + /// Median: 450_655 + /// Std-Dev: 17529.75 /// /// Percentiles nanoseconds: - /// 99th: 488_385 - /// 95th: 472_317 - /// 75th: 461_741 + /// 99th: 476_316 + /// 95th: 468_094 + /// 75th: 455_104 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(459_297), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(453_516), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs index 4102125b..a437c6cc 100644 --- a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs @@ -56,8 +56,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 5_938_000 picoseconds. - Weight::from_parts(6_180_000, 0) + // Minimum execution time: 5_791_000 picoseconds. + Weight::from_parts(6_211_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 5_884_000 picoseconds. - Weight::from_parts(6_215_000, 0) + // Minimum execution time: 5_878_000 picoseconds. + Weight::from_parts(6_112_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/extrinsic_weights.rs b/runtime/trappist/src/weights/extrinsic_weights.rs index 31f6fa0a..abc2f5a6 100644 --- a/runtime/trappist/src/weights/extrinsic_weights.rs +++ b/runtime/trappist/src/weights/extrinsic_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 131_832, 133_579 - /// Average: 132_564 - /// Median: 132_483 - /// Std-Dev: 415.24 + /// Min, Max: 130_591, 132_299 + /// Average: 131_374 + /// Median: 131_351 + /// Std-Dev: 369.27 /// /// Percentiles nanoseconds: - /// 99th: 133_410 - /// 95th: 133_243 - /// 75th: 132_871 + /// 99th: 132_205 + /// 95th: 132_034 + /// 75th: 131_614 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(132_564), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(131_374), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/frame_system.rs b/runtime/trappist/src/weights/frame_system.rs index cbd90031..7666b1c4 100644 --- a/runtime/trappist/src/weights/frame_system.rs +++ b/runtime/trappist/src/weights/frame_system.rs @@ -55,22 +55,22 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_992_000 picoseconds. - Weight::from_parts(2_477_398, 0) + // Minimum execution time: 1_770_000 picoseconds. + Weight::from_parts(579_651, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(387, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(445, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_332_000 picoseconds. - Weight::from_parts(7_721_000, 0) + // Minimum execution time: 7_111_000 picoseconds. + Weight::from_parts(9_292_470, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_691, 0).saturating_mul(b.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_739, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -80,8 +80,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 3_794_000 picoseconds. - Weight::from_parts(4_204_000, 0) + // Minimum execution time: 3_774_000 picoseconds. + Weight::from_parts(4_007_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -102,8 +102,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `198` // Estimated: `1683` - // Minimum execution time: 111_632_620_000 picoseconds. - Weight::from_parts(115_456_321_000, 0) + // Minimum execution time: 112_503_449_000 picoseconds. + Weight::from_parts(115_367_275_000, 0) .saturating_add(Weight::from_parts(0, 1683)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -115,11 +115,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_984_000 picoseconds. - Weight::from_parts(2_084_000, 0) + // Minimum execution time: 1_960_000 picoseconds. + Weight::from_parts(2_028_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_746 - .saturating_add(Weight::from_parts(764_521, 0).saturating_mul(i.into())) + // Standard Error: 1_461 + .saturating_add(Weight::from_parts(746_064, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -129,11 +129,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_007_000 picoseconds. - Weight::from_parts(2_063_000, 0) + // Minimum execution time: 2_031_000 picoseconds. + Weight::from_parts(2_088_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 902 - .saturating_add(Weight::from_parts(561_271, 0).saturating_mul(i.into())) + // Standard Error: 872 + .saturating_add(Weight::from_parts(555_978, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -143,11 +143,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `87 + p * (69 ±0)` // Estimated: `92 + p * (70 ±0)` - // Minimum execution time: 3_837_000 picoseconds. - Weight::from_parts(3_906_000, 0) + // Minimum execution time: 3_768_000 picoseconds. + Weight::from_parts(3_897_000, 0) .saturating_add(Weight::from_parts(0, 92)) - // Standard Error: 1_397 - .saturating_add(Weight::from_parts(1_195_289, 0).saturating_mul(p.into())) + // Standard Error: 1_504 + .saturating_add(Weight::from_parts(1_165_726, 0).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(Weight::from_parts(0, 70).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_asset_registry.rs b/runtime/trappist/src/weights/pallet_asset_registry.rs index 6dd2534b..f0d9a1ca 100644 --- a/runtime/trappist/src/weights/pallet_asset_registry.rs +++ b/runtime/trappist/src/weights/pallet_asset_registry.rs @@ -60,8 +60,8 @@ impl pallet_asset_registry::WeightInfo for WeightInfo pallet_asset_registry::WeightInfo for WeightInfo pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145` // Estimated: `3675` - // Minimum execution time: 27_452_000 picoseconds. - Weight::from_parts(28_163_000, 0) + // Minimum execution time: 26_596_000 picoseconds. + Weight::from_parts(27_655_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -70,8 +70,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3675` - // Minimum execution time: 12_337_000 picoseconds. - Weight::from_parts(12_846_000, 0) + // Minimum execution time: 12_212_000 picoseconds. + Weight::from_parts(12_625_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -82,8 +82,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 13_294_000 picoseconds. - Weight::from_parts(13_682_000, 0) + // Minimum execution time: 13_204_000 picoseconds. + Weight::from_parts(13_434_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -99,11 +99,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + c * (208 ±0)` // Estimated: `3675 + c * (2609 ±0)` - // Minimum execution time: 16_618_000 picoseconds. - Weight::from_parts(16_987_000, 0) + // Minimum execution time: 16_358_000 picoseconds. + Weight::from_parts(16_704_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 8_312 - .saturating_add(Weight::from_parts(14_622_954, 0).saturating_mul(c.into())) + // Standard Error: 8_351 + .saturating_add(Weight::from_parts(14_373_951, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -119,11 +119,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `451 + a * (86 ±0)` // Estimated: `3675 + a * (2623 ±0)` - // Minimum execution time: 16_887_000 picoseconds. - Weight::from_parts(17_108_000, 0) + // Minimum execution time: 16_148_000 picoseconds. + Weight::from_parts(16_767_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 5_282 - .saturating_add(Weight::from_parts(15_444_581, 0).saturating_mul(a.into())) + // Standard Error: 4_914 + .saturating_add(Weight::from_parts(15_393_587, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -138,8 +138,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_035_000 picoseconds. - Weight::from_parts(14_484_000, 0) + // Minimum execution time: 13_820_000 picoseconds. + Weight::from_parts(14_153_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -152,8 +152,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 24_927_000 picoseconds. - Weight::from_parts(25_443_000, 0) + // Minimum execution time: 24_651_000 picoseconds. + Weight::from_parts(25_124_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -166,8 +166,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 30_862_000 picoseconds. - Weight::from_parts(31_500_000, 0) + // Minimum execution time: 30_750_000 picoseconds. + Weight::from_parts(31_498_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -182,8 +182,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 44_479_000 picoseconds. - Weight::from_parts(45_394_000, 0) + // Minimum execution time: 44_200_000 picoseconds. + Weight::from_parts(45_223_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -198,8 +198,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 38_355_000 picoseconds. - Weight::from_parts(39_127_000, 0) + // Minimum execution time: 37_880_000 picoseconds. + Weight::from_parts(38_663_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -214,8 +214,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 44_158_000 picoseconds. - Weight::from_parts(45_107_000, 0) + // Minimum execution time: 44_417_000 picoseconds. + Weight::from_parts(45_267_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -228,8 +228,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_344_000 picoseconds. - Weight::from_parts(16_767_000, 0) + // Minimum execution time: 16_180_000 picoseconds. + Weight::from_parts(16_635_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_277_000 picoseconds. - Weight::from_parts(16_963_000, 0) + // Minimum execution time: 15_967_000 picoseconds. + Weight::from_parts(16_526_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -254,8 +254,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 12_260_000 picoseconds. - Weight::from_parts(12_592_000, 0) + // Minimum execution time: 12_056_000 picoseconds. + Weight::from_parts(12_507_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -266,8 +266,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 12_260_000 picoseconds. - Weight::from_parts(12_716_000, 0) + // Minimum execution time: 12_027_000 picoseconds. + Weight::from_parts(12_288_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -280,8 +280,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_609_000 picoseconds. - Weight::from_parts(15_063_000, 0) + // Minimum execution time: 14_435_000 picoseconds. + Weight::from_parts(14_935_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -292,8 +292,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 13_115_000 picoseconds. - Weight::from_parts(13_457_000, 0) + // Minimum execution time: 13_055_000 picoseconds. + Weight::from_parts(13_516_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -308,13 +308,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 27_054_000 picoseconds. - Weight::from_parts(27_946_638, 0) + // Minimum execution time: 27_163_000 picoseconds. + Weight::from_parts(28_071_058, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 972 - .saturating_add(Weight::from_parts(3_407, 0).saturating_mul(n.into())) - // Standard Error: 972 - .saturating_add(Weight::from_parts(3_851, 0).saturating_mul(s.into())) + // Standard Error: 543 + .saturating_add(Weight::from_parts(2_371, 0).saturating_mul(n.into())) + // Standard Error: 543 + .saturating_add(Weight::from_parts(1_350, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -326,8 +326,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 28_186_000 picoseconds. - Weight::from_parts(28_974_000, 0) + // Minimum execution time: 28_310_000 picoseconds. + Weight::from_parts(28_691_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -338,15 +338,17 @@ impl pallet_assets::WeightInfo for WeightInfo { /// Proof: `Assets::Metadata` (`max_values`: None, `max_size`: Some(140), added: 2615, mode: `MaxEncodedLen`) /// The range of component `n` is `[0, 50]`. /// The range of component `s` is `[0, 50]`. - fn force_set_metadata(_n: u32, s: u32, ) -> Weight { + fn force_set_metadata(n: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `119` // Estimated: `3675` - // Minimum execution time: 13_578_000 picoseconds. - Weight::from_parts(14_268_536, 0) + // Minimum execution time: 13_283_000 picoseconds. + Weight::from_parts(13_945_527, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 392 - .saturating_add(Weight::from_parts(1_231, 0).saturating_mul(s.into())) + // Standard Error: 350 + .saturating_add(Weight::from_parts(1_133, 0).saturating_mul(n.into())) + // Standard Error: 350 + .saturating_add(Weight::from_parts(837, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -358,8 +360,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 27_720_000 picoseconds. - Weight::from_parts(28_431_000, 0) + // Minimum execution time: 27_834_000 picoseconds. + Weight::from_parts(28_331_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -370,8 +372,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 12_581_000 picoseconds. - Weight::from_parts(13_006_000, 0) + // Minimum execution time: 12_725_000 picoseconds. + Weight::from_parts(13_187_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -384,8 +386,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 30_489_000 picoseconds. - Weight::from_parts(31_226_000, 0) + // Minimum execution time: 30_860_000 picoseconds. + Weight::from_parts(31_736_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -402,8 +404,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `6208` - // Minimum execution time: 62_580_000 picoseconds. - Weight::from_parts(64_396_000, 0) + // Minimum execution time: 62_944_000 picoseconds. + Weight::from_parts(64_024_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -416,8 +418,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 33_193_000 picoseconds. - Weight::from_parts(34_318_000, 0) + // Minimum execution time: 33_388_000 picoseconds. + Weight::from_parts(34_505_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -430,8 +432,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 34_428_000 picoseconds. - Weight::from_parts(35_370_000, 0) + // Minimum execution time: 34_552_000 picoseconds. + Weight::from_parts(34_990_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -442,8 +444,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 13_832_000 picoseconds. - Weight::from_parts(14_097_000, 0) + // Minimum execution time: 13_396_000 picoseconds. + Weight::from_parts(13_832_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -458,8 +460,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420` // Estimated: `3675` - // Minimum execution time: 33_462_000 picoseconds. - Weight::from_parts(34_038_000, 0) + // Minimum execution time: 33_671_000 picoseconds. + Weight::from_parts(34_324_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -472,8 +474,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 30_237_000 picoseconds. - Weight::from_parts(30_969_000, 0) + // Minimum execution time: 30_740_000 picoseconds. + Weight::from_parts(31_346_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -488,8 +490,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `546` // Estimated: `3675` - // Minimum execution time: 30_634_000 picoseconds. - Weight::from_parts(31_613_000, 0) + // Minimum execution time: 31_120_000 picoseconds. + Weight::from_parts(31_688_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -502,8 +504,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `439` // Estimated: `3675` - // Minimum execution time: 28_127_000 picoseconds. - Weight::from_parts(28_828_000, 0) + // Minimum execution time: 27_955_000 picoseconds. + Weight::from_parts(28_792_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -516,8 +518,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_415_000 picoseconds. - Weight::from_parts(16_945_000, 0) + // Minimum execution time: 16_039_000 picoseconds. + Weight::from_parts(16_684_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_balances.rs b/runtime/trappist/src/weights/pallet_balances.rs index 91af9418..444d3af8 100644 --- a/runtime/trappist/src/weights/pallet_balances.rs +++ b/runtime/trappist/src/weights/pallet_balances.rs @@ -56,8 +56,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 56_355_000 picoseconds. - Weight::from_parts(58_383_000, 0) + // Minimum execution time: 54_279_000 picoseconds. + Weight::from_parts(55_345_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 42_276_000 picoseconds. - Weight::from_parts(42_999_000, 0) + // Minimum execution time: 40_583_000 picoseconds. + Weight::from_parts(41_159_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -80,8 +80,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 15_874_000 picoseconds. - Weight::from_parts(16_386_000, 0) + // Minimum execution time: 15_930_000 picoseconds. + Weight::from_parts(16_532_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 23_447_000 picoseconds. - Weight::from_parts(23_976_000, 0) + // Minimum execution time: 23_203_000 picoseconds. + Weight::from_parts(23_761_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -104,8 +104,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `6196` - // Minimum execution time: 58_334_000 picoseconds. - Weight::from_parts(60_308_000, 0) + // Minimum execution time: 57_286_000 picoseconds. + Weight::from_parts(58_076_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -116,8 +116,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 51_900_000 picoseconds. - Weight::from_parts(53_380_000, 0) + // Minimum execution time: 50_676_000 picoseconds. + Weight::from_parts(51_296_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -128,8 +128,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 18_793_000 picoseconds. - Weight::from_parts(19_313_000, 0) + // Minimum execution time: 18_740_000 picoseconds. + Weight::from_parts(19_195_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -141,11 +141,11 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + u * (136 ±0)` // Estimated: `990 + u * (2603 ±0)` - // Minimum execution time: 18_245_000 picoseconds. + // Minimum execution time: 18_459_000 picoseconds. Weight::from_parts(18_682_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 11_844 - .saturating_add(Weight::from_parts(15_250_318, 0).saturating_mul(u.into())) + // Standard Error: 14_201 + .saturating_add(Weight::from_parts(15_594_871, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(u.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(u.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(u.into())) diff --git a/runtime/trappist/src/weights/pallet_collator_selection.rs b/runtime/trappist/src/weights/pallet_collator_selection.rs index 80baad73..489ab4b5 100644 --- a/runtime/trappist/src/weights/pallet_collator_selection.rs +++ b/runtime/trappist/src/weights/pallet_collator_selection.rs @@ -59,11 +59,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `214 + b * (78 ±0)` // Estimated: `1203 + b * (2554 ±0)` - // Minimum execution time: 14_415_000 picoseconds. - Weight::from_parts(10_553_913, 0) + // Minimum execution time: 13_865_000 picoseconds. + Weight::from_parts(11_800_235, 0) .saturating_add(Weight::from_parts(0, 1203)) - // Standard Error: 19_547 - .saturating_add(Weight::from_parts(3_239_157, 0).saturating_mul(b.into())) + // Standard Error: 4_264 + .saturating_add(Weight::from_parts(3_155_180, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 2554).saturating_mul(b.into())) @@ -82,11 +82,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1293 + b * (32 ±0) + c * (48 ±0)` // Estimated: `49487 + b * (33 ±0) + c * (49 ±0)` - // Minimum execution time: 57_944_000 picoseconds. - Weight::from_parts(51_742_361, 0) + // Minimum execution time: 57_470_000 picoseconds. + Weight::from_parts(60_516_122, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_019 - .saturating_add(Weight::from_parts(114_822, 0).saturating_mul(c.into())) + // Standard Error: 956 + .saturating_add(Weight::from_parts(86_572, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(b.into())) @@ -101,11 +101,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `82 + b * (32 ±0)` // Estimated: `49487` - // Minimum execution time: 14_881_000 picoseconds. - Weight::from_parts(16_805_960, 0) + // Minimum execution time: 14_298_000 picoseconds. + Weight::from_parts(16_023_748, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_224 - .saturating_add(Weight::from_parts(86_755, 0).saturating_mul(b.into())) + // Standard Error: 1_371 + .saturating_add(Weight::from_parts(94_407, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -115,8 +115,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_338_000 picoseconds. - Weight::from_parts(7_702_000, 0) + // Minimum execution time: 6_916_000 picoseconds. + Weight::from_parts(7_254_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -126,8 +126,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_379_000 picoseconds. - Weight::from_parts(7_662_000, 0) + // Minimum execution time: 7_210_000 picoseconds. + Weight::from_parts(7_460_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -148,11 +148,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1104 + c * (48 ±0)` // Estimated: `49487 + c * (49 ±0)` - // Minimum execution time: 40_426_000 picoseconds. - Weight::from_parts(39_438_010, 0) + // Minimum execution time: 39_585_000 picoseconds. + Weight::from_parts(41_327_049, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_348 - .saturating_add(Weight::from_parts(117_535, 0).saturating_mul(c.into())) + // Standard Error: 1_174 + .saturating_add(Weight::from_parts(95_975, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into())) @@ -168,11 +168,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `539 + c * (48 ±0)` // Estimated: `49487` - // Minimum execution time: 31_621_000 picoseconds. - Weight::from_parts(29_327_204, 0) + // Minimum execution time: 31_233_000 picoseconds. + Weight::from_parts(32_078_894, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_478 - .saturating_add(Weight::from_parts(107_330, 0).saturating_mul(c.into())) + // Standard Error: 1_184 + .saturating_add(Weight::from_parts(85_242, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -186,8 +186,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `140` // Estimated: `6196` - // Minimum execution time: 46_463_000 picoseconds. - Weight::from_parts(48_034_000, 0) + // Minimum execution time: 46_910_000 picoseconds. + Weight::from_parts(47_754_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) @@ -208,11 +208,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `22758 + c * (97 ±0) + r * (116 ±0)` // Estimated: `49487 + c * (2519 ±0) + r * (2603 ±0)` - // Minimum execution time: 16_968_000 picoseconds. - Weight::from_parts(17_437_000, 0) + // Minimum execution time: 16_994_000 picoseconds. + Weight::from_parts(17_390_000, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 699_070 - .saturating_add(Weight::from_parts(29_893_932, 0).saturating_mul(c.into())) + // Standard Error: 688_979 + .saturating_add(Weight::from_parts(29_573_329, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_collective.rs b/runtime/trappist/src/weights/pallet_collective.rs index a5fd91d1..240ab8c8 100644 --- a/runtime/trappist/src/weights/pallet_collective.rs +++ b/runtime/trappist/src/weights/pallet_collective.rs @@ -64,14 +64,14 @@ impl pallet_collective::WeightInfo for WeightInfo { fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + m * (3232 ±0) + p * (3190 ±0)` - // Estimated: `15691 + m * (1967 ±23) + p * (4332 ±23)` - // Minimum execution time: 16_888_000 picoseconds. - Weight::from_parts(17_327_000, 0) + // Estimated: `15691 + m * (1967 ±24) + p * (4332 ±24)` + // Minimum execution time: 16_765_000 picoseconds. + Weight::from_parts(17_107_000, 0) .saturating_add(Weight::from_parts(0, 15691)) - // Standard Error: 56_204 - .saturating_add(Weight::from_parts(4_234_958, 0).saturating_mul(m.into())) - // Standard Error: 56_204 - .saturating_add(Weight::from_parts(7_576_774, 0).saturating_mul(p.into())) + // Standard Error: 54_382 + .saturating_add(Weight::from_parts(4_167_548, 0).saturating_mul(m.into())) + // Standard Error: 54_382 + .saturating_add(Weight::from_parts(7_482_580, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -89,13 +89,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `1618 + m * (32 ±0)` - // Minimum execution time: 19_278_000 picoseconds. - Weight::from_parts(18_460_550, 0) + // Minimum execution time: 19_188_000 picoseconds. + Weight::from_parts(18_521_068, 0) .saturating_add(Weight::from_parts(0, 1618)) - // Standard Error: 28 - .saturating_add(Weight::from_parts(1_690, 0).saturating_mul(b.into())) - // Standard Error: 291 - .saturating_add(Weight::from_parts(13_269, 0).saturating_mul(m.into())) + // Standard Error: 24 + .saturating_add(Weight::from_parts(1_641, 0).saturating_mul(b.into())) + // Standard Error: 254 + .saturating_add(Weight::from_parts(14_175, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -111,13 +111,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `3598 + m * (32 ±0)` - // Minimum execution time: 22_137_000 picoseconds. - Weight::from_parts(21_491_300, 0) + // Minimum execution time: 21_746_000 picoseconds. + Weight::from_parts(20_905_609, 0) .saturating_add(Weight::from_parts(0, 3598)) - // Standard Error: 34 - .saturating_add(Weight::from_parts(1_661, 0).saturating_mul(b.into())) - // Standard Error: 351 - .saturating_add(Weight::from_parts(21_564, 0).saturating_mul(m.into())) + // Standard Error: 28 + .saturating_add(Weight::from_parts(1_692, 0).saturating_mul(b.into())) + // Standard Error: 291 + .saturating_add(Weight::from_parts(21_254, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -138,15 +138,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `322 + m * (32 ±0) + p * (36 ±0)` // Estimated: `3714 + m * (33 ±0) + p * (36 ±0)` - // Minimum execution time: 25_319_000 picoseconds. - Weight::from_parts(24_165_948, 0) + // Minimum execution time: 25_107_000 picoseconds. + Weight::from_parts(23_678_593, 0) .saturating_add(Weight::from_parts(0, 3714)) - // Standard Error: 108 - .saturating_add(Weight::from_parts(3_334, 0).saturating_mul(b.into())) - // Standard Error: 1_132 - .saturating_add(Weight::from_parts(28_000, 0).saturating_mul(m.into())) - // Standard Error: 1_117 - .saturating_add(Weight::from_parts(192_138, 0).saturating_mul(p.into())) + // Standard Error: 84 + .saturating_add(Weight::from_parts(3_037, 0).saturating_mul(b.into())) + // Standard Error: 884 + .saturating_add(Weight::from_parts(27_286, 0).saturating_mul(m.into())) + // Standard Error: 873 + .saturating_add(Weight::from_parts(189_444, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(m.into())) @@ -161,11 +161,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + m * (64 ±0)` // Estimated: `4235 + m * (64 ±0)` - // Minimum execution time: 25_609_000 picoseconds. - Weight::from_parts(26_900_173, 0) + // Minimum execution time: 25_033_000 picoseconds. + Weight::from_parts(26_258_335, 0) .saturating_add(Weight::from_parts(0, 4235)) - // Standard Error: 781 - .saturating_add(Weight::from_parts(33_406, 0).saturating_mul(m.into())) + // Standard Error: 888 + .saturating_add(Weight::from_parts(36_072, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -184,13 +184,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `360 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3805 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 28_592_000 picoseconds. - Weight::from_parts(27_963_511, 0) + // Minimum execution time: 27_324_000 picoseconds. + Weight::from_parts(26_992_564, 0) .saturating_add(Weight::from_parts(0, 3805)) - // Standard Error: 868 - .saturating_add(Weight::from_parts(30_375, 0).saturating_mul(m.into())) - // Standard Error: 846 - .saturating_add(Weight::from_parts(179_327, 0).saturating_mul(p.into())) + // Standard Error: 902 + .saturating_add(Weight::from_parts(32_257, 0).saturating_mul(m.into())) + // Standard Error: 880 + .saturating_add(Weight::from_parts(187_084, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -213,15 +213,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4079 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 44_196_000 picoseconds. - Weight::from_parts(44_992_637, 0) + // Minimum execution time: 43_148_000 picoseconds. + Weight::from_parts(43_069_902, 0) .saturating_add(Weight::from_parts(0, 4079)) - // Standard Error: 201 - .saturating_add(Weight::from_parts(3_177, 0).saturating_mul(b.into())) - // Standard Error: 2_127 - .saturating_add(Weight::from_parts(6_027, 0).saturating_mul(m.into())) - // Standard Error: 2_073 - .saturating_add(Weight::from_parts(236_672, 0).saturating_mul(p.into())) + // Standard Error: 190 + .saturating_add(Weight::from_parts(3_410, 0).saturating_mul(b.into())) + // Standard Error: 2_011 + .saturating_add(Weight::from_parts(11_682, 0).saturating_mul(m.into())) + // Standard Error: 1_960 + .saturating_add(Weight::from_parts(235_022, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -244,13 +244,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `380 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3825 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 30_529_000 picoseconds. - Weight::from_parts(29_820_895, 0) + // Minimum execution time: 30_213_000 picoseconds. + Weight::from_parts(29_411_460, 0) .saturating_add(Weight::from_parts(0, 3825)) - // Standard Error: 749 - .saturating_add(Weight::from_parts(35_453, 0).saturating_mul(m.into())) - // Standard Error: 730 - .saturating_add(Weight::from_parts(191_682, 0).saturating_mul(p.into())) + // Standard Error: 912 + .saturating_add(Weight::from_parts(38_216, 0).saturating_mul(m.into())) + // Standard Error: 890 + .saturating_add(Weight::from_parts(190_448, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -275,15 +275,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `782 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4099 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 46_756_000 picoseconds. - Weight::from_parts(48_089_844, 0) + // Minimum execution time: 45_574_000 picoseconds. + Weight::from_parts(45_876_001, 0) .saturating_add(Weight::from_parts(0, 4099)) - // Standard Error: 182 - .saturating_add(Weight::from_parts(2_790, 0).saturating_mul(b.into())) - // Standard Error: 1_931 - .saturating_add(Weight::from_parts(26_888, 0).saturating_mul(m.into())) - // Standard Error: 1_882 - .saturating_add(Weight::from_parts(234_204, 0).saturating_mul(p.into())) + // Standard Error: 149 + .saturating_add(Weight::from_parts(3_518, 0).saturating_mul(b.into())) + // Standard Error: 1_582 + .saturating_add(Weight::from_parts(29_142, 0).saturating_mul(m.into())) + // Standard Error: 1_542 + .saturating_add(Weight::from_parts(236_469, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -301,11 +301,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `189 + p * (32 ±0)` // Estimated: `1674 + p * (32 ±0)` - // Minimum execution time: 15_381_000 picoseconds. - Weight::from_parts(16_723_124, 0) + // Minimum execution time: 15_380_000 picoseconds. + Weight::from_parts(16_476_515, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_301 - .saturating_add(Weight::from_parts(169_648, 0).saturating_mul(p.into())) + // Standard Error: 791 + .saturating_add(Weight::from_parts(164_838, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_contracts.rs b/runtime/trappist/src/weights/pallet_contracts.rs index aca691a4..c871473e 100644 --- a/runtime/trappist/src/weights/pallet_contracts.rs +++ b/runtime/trappist/src/weights/pallet_contracts.rs @@ -56,8 +56,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_024_000 picoseconds. - Weight::from_parts(3_148_000, 0) + // Minimum execution time: 3_065_000 picoseconds. + Weight::from_parts(3_302_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -68,11 +68,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `391 + k * (69 ±0)` // Estimated: `381 + k * (70 ±0)` - // Minimum execution time: 13_536_000 picoseconds. - Weight::from_parts(13_900_000, 0) + // Minimum execution time: 13_481_000 picoseconds. + Weight::from_parts(13_766_000, 0) .saturating_add(Weight::from_parts(0, 381)) - // Standard Error: 1_475 - .saturating_add(Weight::from_parts(1_078_230, 0).saturating_mul(k.into())) + // Standard Error: 1_192 + .saturating_add(Weight::from_parts(1_053_124, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -86,11 +86,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145 + c * (1 ±0)` // Estimated: `6083 + c * (1 ±0)` - // Minimum execution time: 8_743_000 picoseconds. - Weight::from_parts(5_832_786, 0) + // Minimum execution time: 8_740_000 picoseconds. + Weight::from_parts(6_055_634, 0) .saturating_add(Weight::from_parts(0, 6083)) // Standard Error: 5 - .saturating_add(Weight::from_parts(1_664, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_690, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -103,8 +103,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `482` // Estimated: `6422` - // Minimum execution time: 16_843_000 picoseconds. - Weight::from_parts(17_377_000, 0) + // Minimum execution time: 16_936_000 picoseconds. + Weight::from_parts(17_608_000, 0) .saturating_add(Weight::from_parts(0, 6422)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -118,11 +118,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `105 + k * (1 ±0)` // Estimated: `3569 + k * (1 ±0)` - // Minimum execution time: 4_215_000 picoseconds. - Weight::from_parts(4_268_000, 0) + // Minimum execution time: 4_185_000 picoseconds. + Weight::from_parts(4_313_000, 0) .saturating_add(Weight::from_parts(0, 3569)) - // Standard Error: 495 - .saturating_add(Weight::from_parts(1_013_413, 0).saturating_mul(k.into())) + // Standard Error: 576 + .saturating_add(Weight::from_parts(1_006_690, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) @@ -141,11 +141,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `259 + c * (1 ±0)` // Estimated: `6197 + c * (1 ±0)` - // Minimum execution time: 16_491_000 picoseconds. - Weight::from_parts(16_564_895, 0) + // Minimum execution time: 15_963_000 picoseconds. + Weight::from_parts(16_189_005, 0) .saturating_add(Weight::from_parts(0, 6197)) // Standard Error: 1 - .saturating_add(Weight::from_parts(466, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(500, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -156,8 +156,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `374` // Estimated: `6314` - // Minimum execution time: 12_912_000 picoseconds. - Weight::from_parts(13_357_000, 0) + // Minimum execution time: 12_088_000 picoseconds. + Weight::from_parts(12_629_000, 0) .saturating_add(Weight::from_parts(0, 6314)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -172,8 +172,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `294` // Estimated: `6234` - // Minimum execution time: 47_029_000 picoseconds. - Weight::from_parts(48_199_000, 0) + // Minimum execution time: 46_049_000 picoseconds. + Weight::from_parts(47_110_000, 0) .saturating_add(Weight::from_parts(0, 6234)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(1)) @@ -186,8 +186,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `566` // Estimated: `6506` - // Minimum execution time: 55_593_000 picoseconds. - Weight::from_parts(57_000_000, 0) + // Minimum execution time: 54_294_000 picoseconds. + Weight::from_parts(56_280_000, 0) .saturating_add(Weight::from_parts(0, 6506)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) @@ -198,8 +198,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_530_000 picoseconds. - Weight::from_parts(3_722_000, 0) + // Minimum execution time: 3_594_000 picoseconds. + Weight::from_parts(3_788_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -212,8 +212,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3565` - // Minimum execution time: 10_862_000 picoseconds. - Weight::from_parts(11_196_000, 0) + // Minimum execution time: 10_545_000 picoseconds. + Weight::from_parts(11_147_000, 0) .saturating_add(Weight::from_parts(0, 3565)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -224,8 +224,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 4_096_000 picoseconds. - Weight::from_parts(4_344_000, 0) + // Minimum execution time: 4_089_000 picoseconds. + Weight::from_parts(4_287_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -237,8 +237,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3566` - // Minimum execution time: 5_856_000 picoseconds. - Weight::from_parts(6_160_000, 0) + // Minimum execution time: 5_813_000 picoseconds. + Weight::from_parts(6_256_000, 0) .saturating_add(Weight::from_parts(0, 3566)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -250,8 +250,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 6_102_000 picoseconds. - Weight::from_parts(6_344_000, 0) + // Minimum execution time: 6_027_000 picoseconds. + Weight::from_parts(6_240_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -275,11 +275,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `631 + c * (1 ±0)` // Estimated: `6578 + c * (1 ±0)` - // Minimum execution time: 302_624_000 picoseconds. - Weight::from_parts(282_890_277, 0) + // Minimum execution time: 360_901_000 picoseconds. + Weight::from_parts(339_217_087, 0) .saturating_add(Weight::from_parts(0, 6578)) - // Standard Error: 78 - .saturating_add(Weight::from_parts(35_805, 0).saturating_mul(c.into())) + // Standard Error: 75 + .saturating_add(Weight::from_parts(35_649, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -309,15 +309,15 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `152` // Estimated: `8564` - // Minimum execution time: 5_159_941_000 picoseconds. - Weight::from_parts(241_502_131, 0) + // Minimum execution time: 5_086_153_000 picoseconds. + Weight::from_parts(563_332_666, 0) .saturating_add(Weight::from_parts(0, 8564)) - // Standard Error: 133 - .saturating_add(Weight::from_parts(104_757, 0).saturating_mul(c.into())) - // Standard Error: 16 - .saturating_add(Weight::from_parts(2_348, 0).saturating_mul(i.into())) - // Standard Error: 16 - .saturating_add(Weight::from_parts(2_435, 0).saturating_mul(s.into())) + // Standard Error: 118 + .saturating_add(Weight::from_parts(103_382, 0).saturating_mul(c.into())) + // Standard Error: 14 + .saturating_add(Weight::from_parts(2_130, 0).saturating_mul(i.into())) + // Standard Error: 14 + .saturating_add(Weight::from_parts(2_294, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().writes(10)) } @@ -345,13 +345,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `376` // Estimated: `6338` - // Minimum execution time: 2_333_766_000 picoseconds. - Weight::from_parts(58_238_117, 0) + // Minimum execution time: 2_248_865_000 picoseconds. + Weight::from_parts(211_530_959, 0) .saturating_add(Weight::from_parts(0, 6338)) // Standard Error: 16 - .saturating_add(Weight::from_parts(2_078, 0).saturating_mul(i.into())) + .saturating_add(Weight::from_parts(1_859, 0).saturating_mul(i.into())) // Standard Error: 16 - .saturating_add(Weight::from_parts(2_261, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(2_170, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) } @@ -373,8 +373,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `732` // Estimated: `6672` - // Minimum execution time: 207_392_000 picoseconds. - Weight::from_parts(214_493_000, 0) + // Minimum execution time: 206_563_000 picoseconds. + Weight::from_parts(214_578_000, 0) .saturating_add(Weight::from_parts(0, 6672)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) @@ -394,11 +394,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 278_194_000 picoseconds. - Weight::from_parts(266_692_426, 0) + // Minimum execution time: 344_346_000 picoseconds. + Weight::from_parts(303_409_105, 0) .saturating_add(Weight::from_parts(0, 3541)) - // Standard Error: 131 - .saturating_add(Weight::from_parts(69_638, 0).saturating_mul(c.into())) + // Standard Error: 117 + .saturating_add(Weight::from_parts(69_609, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -416,8 +416,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `246` // Estimated: `3711` - // Minimum execution time: 44_249_000 picoseconds. - Weight::from_parts(45_538_000, 0) + // Minimum execution time: 43_432_000 picoseconds. + Weight::from_parts(44_016_000, 0) .saturating_add(Weight::from_parts(0, 3711)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -434,8 +434,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `486` // Estimated: `8901` - // Minimum execution time: 34_057_000 picoseconds. - Weight::from_parts(35_127_000, 0) + // Minimum execution time: 32_617_000 picoseconds. + Weight::from_parts(33_838_000, 0) .saturating_add(Weight::from_parts(0, 8901)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) @@ -459,11 +459,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `734 + r * (6 ±0)` // Estimated: `6674 + r * (6 ±0)` - // Minimum execution time: 272_905_000 picoseconds. - Weight::from_parts(283_635_645, 0) + // Minimum execution time: 332_521_000 picoseconds. + Weight::from_parts(344_840_660, 0) .saturating_add(Weight::from_parts(0, 6674)) - // Standard Error: 512 - .saturating_add(Weight::from_parts(376_757, 0).saturating_mul(r.into())) + // Standard Error: 407 + .saturating_add(Weight::from_parts(363_156, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -487,11 +487,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `790 + r * (209 ±0)` // Estimated: `6694 + r * (2684 ±0)` - // Minimum execution time: 274_487_000 picoseconds. - Weight::from_parts(125_316_267, 0) + // Minimum execution time: 329_251_000 picoseconds. + Weight::from_parts(189_362_881, 0) .saturating_add(Weight::from_parts(0, 6694)) - // Standard Error: 5_831 - .saturating_add(Weight::from_parts(3_780_487, 0).saturating_mul(r.into())) + // Standard Error: 5_447 + .saturating_add(Weight::from_parts(3_636_992, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -516,11 +516,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `789 + r * (213 ±0)` // Estimated: `6698 + r * (2688 ±0)` - // Minimum execution time: 277_503_000 picoseconds. - Weight::from_parts(118_135_399, 0) + // Minimum execution time: 331_873_000 picoseconds. + Weight::from_parts(186_159_246, 0) .saturating_add(Weight::from_parts(0, 6698)) - // Standard Error: 7_150 - .saturating_add(Weight::from_parts(4_614_919, 0).saturating_mul(r.into())) + // Standard Error: 5_854 + .saturating_add(Weight::from_parts(4_511_245, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -545,11 +545,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `741 + r * (6 ±0)` // Estimated: `6683 + r * (6 ±0)` - // Minimum execution time: 274_628_000 picoseconds. - Weight::from_parts(287_831_524, 0) + // Minimum execution time: 333_634_000 picoseconds. + Weight::from_parts(342_165_481, 0) .saturating_add(Weight::from_parts(0, 6683)) - // Standard Error: 705 - .saturating_add(Weight::from_parts(473_804, 0).saturating_mul(r.into())) + // Standard Error: 532 + .saturating_add(Weight::from_parts(472_064, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -573,11 +573,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `731 + r * (3 ±0)` // Estimated: `6672 + r * (3 ±0)` - // Minimum execution time: 270_533_000 picoseconds. - Weight::from_parts(279_865_221, 0) + // Minimum execution time: 328_909_000 picoseconds. + Weight::from_parts(340_433_911, 0) .saturating_add(Weight::from_parts(0, 6672)) - // Standard Error: 433 - .saturating_add(Weight::from_parts(192_543, 0).saturating_mul(r.into())) + // Standard Error: 383 + .saturating_add(Weight::from_parts(188_960, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -599,11 +599,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `621 + r * (3 ±0)` // Estimated: `6561 + r * (3 ±0)` - // Minimum execution time: 261_586_000 picoseconds. - Weight::from_parts(273_455_934, 0) + // Minimum execution time: 320_598_000 picoseconds. + Weight::from_parts(331_853_036, 0) .saturating_add(Weight::from_parts(0, 6561)) - // Standard Error: 436 - .saturating_add(Weight::from_parts(166_776, 0).saturating_mul(r.into())) + // Standard Error: 345 + .saturating_add(Weight::from_parts(169_677, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -627,11 +627,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `735 + r * (6 ±0)` // Estimated: `6675 + r * (6 ±0)` - // Minimum execution time: 263_362_000 picoseconds. - Weight::from_parts(282_342_978, 0) + // Minimum execution time: 332_052_000 picoseconds. + Weight::from_parts(344_201_052, 0) .saturating_add(Weight::from_parts(0, 6675)) - // Standard Error: 455 - .saturating_add(Weight::from_parts(382_845, 0).saturating_mul(r.into())) + // Standard Error: 452 + .saturating_add(Weight::from_parts(362_353, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -655,11 +655,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `731 + r * (6 ±0)` // Estimated: `6674 + r * (6 ±0)` - // Minimum execution time: 276_012_000 picoseconds. - Weight::from_parts(285_829_786, 0) + // Minimum execution time: 333_582_000 picoseconds. + Weight::from_parts(342_220_412, 0) .saturating_add(Weight::from_parts(0, 6674)) - // Standard Error: 708 - .saturating_add(Weight::from_parts(407_804, 0).saturating_mul(r.into())) + // Standard Error: 539 + .saturating_add(Weight::from_parts(398_532, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -683,11 +683,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `838 + r * (6 ±0)` // Estimated: `6780 + r * (6 ±0)` - // Minimum execution time: 275_307_000 picoseconds. - Weight::from_parts(304_387_355, 0) + // Minimum execution time: 333_294_000 picoseconds. + Weight::from_parts(355_238_123, 0) .saturating_add(Weight::from_parts(0, 6780)) - // Standard Error: 1_589 - .saturating_add(Weight::from_parts(1_724_447, 0).saturating_mul(r.into())) + // Standard Error: 1_412 + .saturating_add(Weight::from_parts(1_577_479, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -711,11 +711,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `745 + r * (6 ±0)` // Estimated: `6691 + r * (6 ±0)` - // Minimum execution time: 275_166_000 picoseconds. - Weight::from_parts(284_374_676, 0) + // Minimum execution time: 333_101_000 picoseconds. + Weight::from_parts(342_536_296, 0) .saturating_add(Weight::from_parts(0, 6691)) - // Standard Error: 536 - .saturating_add(Weight::from_parts(373_475, 0).saturating_mul(r.into())) + // Standard Error: 392 + .saturating_add(Weight::from_parts(357_698, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -739,11 +739,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `743 + r * (6 ±0)` // Estimated: `6684 + r * (6 ±0)` - // Minimum execution time: 273_003_000 picoseconds. - Weight::from_parts(285_461_243, 0) + // Minimum execution time: 332_907_000 picoseconds. + Weight::from_parts(343_879_148, 0) .saturating_add(Weight::from_parts(0, 6684)) - // Standard Error: 454 - .saturating_add(Weight::from_parts(375_675, 0).saturating_mul(r.into())) + // Standard Error: 534 + .saturating_add(Weight::from_parts(360_978, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -767,11 +767,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `740 + r * (6 ±0)` // Estimated: `6687 + r * (6 ±0)` - // Minimum execution time: 275_593_000 picoseconds. - Weight::from_parts(287_416_909, 0) + // Minimum execution time: 335_421_000 picoseconds. + Weight::from_parts(346_343_341, 0) .saturating_add(Weight::from_parts(0, 6687)) - // Standard Error: 527 - .saturating_add(Weight::from_parts(380_778, 0).saturating_mul(r.into())) + // Standard Error: 471 + .saturating_add(Weight::from_parts(356_022, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -795,11 +795,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `731 + r * (6 ±0)` // Estimated: `6672 + r * (6 ±0)` - // Minimum execution time: 273_359_000 picoseconds. - Weight::from_parts(284_317_494, 0) + // Minimum execution time: 332_523_000 picoseconds. + Weight::from_parts(343_803_576, 0) .saturating_add(Weight::from_parts(0, 6672)) - // Standard Error: 411 - .saturating_add(Weight::from_parts(368_244, 0).saturating_mul(r.into())) + // Standard Error: 568 + .saturating_add(Weight::from_parts(361_802, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -823,13 +823,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_weight_to_fee(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `742 + r * (14 ±0)` - // Estimated: `6681 + r * (14 ±0)` - // Minimum execution time: 266_766_000 picoseconds. - Weight::from_parts(292_714_881, 0) - .saturating_add(Weight::from_parts(0, 6681)) - // Standard Error: 831 - .saturating_add(Weight::from_parts(1_681_445, 0).saturating_mul(r.into())) + // Measured: `805 + r * (14 ±0)` + // Estimated: `6740 + r * (14 ±0)` + // Minimum execution time: 334_800_000 picoseconds. + Weight::from_parts(358_957_715, 0) + .saturating_add(Weight::from_parts(0, 6740)) + // Standard Error: 736 + .saturating_add(Weight::from_parts(1_703_559, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 14).saturating_mul(r.into())) @@ -853,11 +853,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `733 + r * (6 ±0)` // Estimated: `6675 + r * (6 ±0)` - // Minimum execution time: 272_615_000 picoseconds. - Weight::from_parts(282_686_969, 0) + // Minimum execution time: 330_307_000 picoseconds. + Weight::from_parts(340_383_550, 0) .saturating_add(Weight::from_parts(0, 6675)) - // Standard Error: 383 - .saturating_add(Weight::from_parts(302_774, 0).saturating_mul(r.into())) + // Standard Error: 461 + .saturating_add(Weight::from_parts(297_906, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -881,11 +881,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `737` // Estimated: `6677` - // Minimum execution time: 275_159_000 picoseconds. - Weight::from_parts(230_805_232, 0) + // Minimum execution time: 335_017_000 picoseconds. + Weight::from_parts(290_908_395, 0) .saturating_add(Weight::from_parts(0, 6677)) // Standard Error: 23 - .saturating_add(Weight::from_parts(1_038, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_049, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -908,11 +908,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `721 + r * (45 ±0)` // Estimated: `6661 + r * (45 ±0)` - // Minimum execution time: 255_049_000 picoseconds. - Weight::from_parts(276_849_381, 0) + // Minimum execution time: 325_404_000 picoseconds. + Weight::from_parts(335_308_924, 0) .saturating_add(Weight::from_parts(0, 6661)) - // Standard Error: 770_737 - .saturating_add(Weight::from_parts(3_418_318, 0).saturating_mul(r.into())) + // Standard Error: 792_216 + .saturating_add(Weight::from_parts(3_235_975, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 45).saturating_mul(r.into())) @@ -936,11 +936,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `731` // Estimated: `6678` - // Minimum execution time: 271_653_000 picoseconds. - Weight::from_parts(280_134_291, 0) + // Minimum execution time: 332_565_000 picoseconds. + Weight::from_parts(339_137_254, 0) .saturating_add(Weight::from_parts(0, 6678)) // Standard Error: 0 - .saturating_add(Weight::from_parts(391, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(378, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -969,11 +969,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2840 + r * (263 ±0)` // Estimated: `8780 + r * (5213 ±0)` - // Minimum execution time: 279_516_000 picoseconds. - Weight::from_parts(306_082_812, 0) + // Minimum execution time: 351_110_000 picoseconds. + Weight::from_parts(364_148_616, 0) .saturating_add(Weight::from_parts(0, 8780)) - // Standard Error: 879_585 - .saturating_add(Weight::from_parts(121_649_887, 0).saturating_mul(r.into())) + // Standard Error: 883_470 + .saturating_add(Weight::from_parts(119_523_583, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1001,11 +1001,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `742 + r * (10 ±0)` // Estimated: `6688 + r * (10 ±0)` - // Minimum execution time: 264_657_000 picoseconds. - Weight::from_parts(293_807_431, 0) + // Minimum execution time: 333_963_000 picoseconds. + Weight::from_parts(347_649_073, 0) .saturating_add(Weight::from_parts(0, 6688)) - // Standard Error: 1_258 - .saturating_add(Weight::from_parts(1_908_871, 0).saturating_mul(r.into())) + // Standard Error: 1_708 + .saturating_add(Weight::from_parts(1_876_794, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -1029,11 +1029,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `731 + r * (10 ±0)` // Estimated: `6673 + r * (10 ±0)` - // Minimum execution time: 270_920_000 picoseconds. - Weight::from_parts(285_201_854, 0) + // Minimum execution time: 329_255_000 picoseconds. + Weight::from_parts(350_338_574, 0) .saturating_add(Weight::from_parts(0, 6673)) - // Standard Error: 1_727 - .saturating_add(Weight::from_parts(4_107_255, 0).saturating_mul(r.into())) + // Standard Error: 1_449 + .saturating_add(Weight::from_parts(3_745_614, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -1058,13 +1058,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `748 + t * (32 ±0)` // Estimated: `6693 + t * (2508 ±0)` - // Minimum execution time: 276_105_000 picoseconds. - Weight::from_parts(285_960_585, 0) + // Minimum execution time: 347_878_000 picoseconds. + Weight::from_parts(344_297_846, 0) .saturating_add(Weight::from_parts(0, 6693)) - // Standard Error: 99_453 - .saturating_add(Weight::from_parts(3_471_257, 0).saturating_mul(t.into())) - // Standard Error: 27 - .saturating_add(Weight::from_parts(1_009, 0).saturating_mul(n.into())) + // Standard Error: 87_600 + .saturating_add(Weight::from_parts(3_105_008, 0).saturating_mul(t.into())) + // Standard Error: 24 + .saturating_add(Weight::from_parts(1_003, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1090,11 +1090,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `730 + r * (7 ±0)` // Estimated: `6675 + r * (7 ±0)` - // Minimum execution time: 165_530_000 picoseconds. - Weight::from_parts(177_083_022, 0) + // Minimum execution time: 170_477_000 picoseconds. + Weight::from_parts(182_965_287, 0) .saturating_add(Weight::from_parts(0, 6675)) - // Standard Error: 384 - .saturating_add(Weight::from_parts(251_002, 0).saturating_mul(r.into())) + // Standard Error: 358 + .saturating_add(Weight::from_parts(252_468, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 7).saturating_mul(r.into())) @@ -1118,11 +1118,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `125681` // Estimated: `131623` - // Minimum execution time: 428_991_000 picoseconds. - Weight::from_parts(396_949_610, 0) + // Minimum execution time: 497_536_000 picoseconds. + Weight::from_parts(470_766_773, 0) .saturating_add(Weight::from_parts(0, 131623)) // Standard Error: 12 - .saturating_add(Weight::from_parts(1_099, 0).saturating_mul(i.into())) + .saturating_add(Weight::from_parts(1_087, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1133,11 +1133,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `796 + r * (292 ±0)` // Estimated: `799 + r * (293 ±0)` - // Minimum execution time: 273_895_000 picoseconds. - Weight::from_parts(186_757_112, 0) + // Minimum execution time: 332_615_000 picoseconds. + Weight::from_parts(249_673_352, 0) .saturating_add(Weight::from_parts(0, 799)) - // Standard Error: 9_563 - .saturating_add(Weight::from_parts(6_546_600, 0).saturating_mul(r.into())) + // Standard Error: 9_183 + .saturating_add(Weight::from_parts(6_515_487, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1151,11 +1151,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1281` // Estimated: `1279` - // Minimum execution time: 296_380_000 picoseconds. - Weight::from_parts(347_567_835, 0) + // Minimum execution time: 353_316_000 picoseconds. + Weight::from_parts(405_497_759, 0) .saturating_add(Weight::from_parts(0, 1279)) - // Standard Error: 67 - .saturating_add(Weight::from_parts(551, 0).saturating_mul(n.into())) + // Standard Error: 72 + .saturating_add(Weight::from_parts(705, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(8)) } @@ -1166,11 +1166,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1126 + n * (1 ±0)` // Estimated: `1126 + n * (1 ±0)` - // Minimum execution time: 283_620_000 picoseconds. - Weight::from_parts(305_605_815, 0) + // Minimum execution time: 352_409_000 picoseconds. + Weight::from_parts(362_785_128, 0) .saturating_add(Weight::from_parts(0, 1126)) - // Standard Error: 35 - .saturating_add(Weight::from_parts(206, 0).saturating_mul(n.into())) + // Standard Error: 31 + .saturating_add(Weight::from_parts(357, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1182,11 +1182,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `794 + r * (288 ±0)` // Estimated: `799 + r * (289 ±0)` - // Minimum execution time: 275_820_000 picoseconds. - Weight::from_parts(190_160_199, 0) + // Minimum execution time: 331_647_000 picoseconds. + Weight::from_parts(253_025_234, 0) .saturating_add(Weight::from_parts(0, 799)) - // Standard Error: 9_145 - .saturating_add(Weight::from_parts(6_439_176, 0).saturating_mul(r.into())) + // Standard Error: 9_009 + .saturating_add(Weight::from_parts(6_375_883, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1200,11 +1200,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1122 + n * (1 ±0)` // Estimated: `1122 + n * (1 ±0)` - // Minimum execution time: 282_060_000 picoseconds. - Weight::from_parts(306_869_936, 0) + // Minimum execution time: 352_917_000 picoseconds. + Weight::from_parts(362_317_895, 0) .saturating_add(Weight::from_parts(0, 1122)) - // Standard Error: 34 - .saturating_add(Weight::from_parts(118, 0).saturating_mul(n.into())) + // Standard Error: 32 + .saturating_add(Weight::from_parts(198, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1216,11 +1216,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `794 + r * (296 ±0)` // Estimated: `796 + r * (297 ±0)` - // Minimum execution time: 273_537_000 picoseconds. - Weight::from_parts(211_067_185, 0) + // Minimum execution time: 332_761_000 picoseconds. + Weight::from_parts(272_063_683, 0) .saturating_add(Weight::from_parts(0, 796)) - // Standard Error: 7_688 - .saturating_add(Weight::from_parts(5_431_060, 0).saturating_mul(r.into())) + // Standard Error: 7_296 + .saturating_add(Weight::from_parts(5_380_072, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1233,11 +1233,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1138 + n * (1 ±0)` // Estimated: `1138 + n * (1 ±0)` - // Minimum execution time: 280_497_000 picoseconds. - Weight::from_parts(302_603_613, 0) + // Minimum execution time: 351_246_000 picoseconds. + Weight::from_parts(362_328_924, 0) .saturating_add(Weight::from_parts(0, 1138)) - // Standard Error: 33 - .saturating_add(Weight::from_parts(751, 0).saturating_mul(n.into())) + // Standard Error: 30 + .saturating_add(Weight::from_parts(840, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1249,11 +1249,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `805 + r * (288 ±0)` // Estimated: `802 + r * (289 ±0)` - // Minimum execution time: 272_878_000 picoseconds. - Weight::from_parts(211_995_485, 0) + // Minimum execution time: 330_836_000 picoseconds. + Weight::from_parts(265_556_658, 0) .saturating_add(Weight::from_parts(0, 802)) - // Standard Error: 7_111 - .saturating_add(Weight::from_parts(5_246_467, 0).saturating_mul(r.into())) + // Standard Error: 7_536 + .saturating_add(Weight::from_parts(5_210_224, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1266,11 +1266,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1125 + n * (1 ±0)` // Estimated: `1125 + n * (1 ±0)` - // Minimum execution time: 278_555_000 picoseconds. - Weight::from_parts(300_545_019, 0) + // Minimum execution time: 349_139_000 picoseconds. + Weight::from_parts(360_230_690, 0) .saturating_add(Weight::from_parts(0, 1125)) - // Standard Error: 32 - .saturating_add(Weight::from_parts(253, 0).saturating_mul(n.into())) + // Standard Error: 31 + .saturating_add(Weight::from_parts(101, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1282,11 +1282,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `787 + r * (296 ±0)` // Estimated: `792 + r * (297 ±0)` - // Minimum execution time: 275_305_000 picoseconds. - Weight::from_parts(187_247_963, 0) + // Minimum execution time: 332_309_000 picoseconds. + Weight::from_parts(245_334_149, 0) .saturating_add(Weight::from_parts(0, 792)) - // Standard Error: 9_381 - .saturating_add(Weight::from_parts(6_581_655, 0).saturating_mul(r.into())) + // Standard Error: 9_205 + .saturating_add(Weight::from_parts(6_536_551, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1300,11 +1300,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1139 + n * (1 ±0)` // Estimated: `1139 + n * (1 ±0)` - // Minimum execution time: 282_926_000 picoseconds. - Weight::from_parts(305_423_658, 0) + // Minimum execution time: 351_981_000 picoseconds. + Weight::from_parts(362_084_997, 0) .saturating_add(Weight::from_parts(0, 1139)) - // Standard Error: 36 - .saturating_add(Weight::from_parts(601, 0).saturating_mul(n.into())) + // Standard Error: 28 + .saturating_add(Weight::from_parts(917, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1328,11 +1328,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `766 + r * (45 ±0)` // Estimated: `6764 + r * (2520 ±0)` - // Minimum execution time: 272_962_000 picoseconds. - Weight::from_parts(69_022_082, 0) + // Minimum execution time: 332_292_000 picoseconds. + Weight::from_parts(211_663_603, 0) .saturating_add(Weight::from_parts(0, 6764)) - // Standard Error: 21_832 - .saturating_add(Weight::from_parts(38_708_214, 0).saturating_mul(r.into())) + // Standard Error: 20_839 + .saturating_add(Weight::from_parts(36_857_094, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -1358,11 +1358,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1128 + r * (245 ±0)` // Estimated: `9308 + r * (2721 ±0)` - // Minimum execution time: 274_743_000 picoseconds. - Weight::from_parts(278_379_000, 0) + // Minimum execution time: 333_434_000 picoseconds. + Weight::from_parts(338_150_000, 0) .saturating_add(Weight::from_parts(0, 9308)) - // Standard Error: 121_187 - .saturating_add(Weight::from_parts(249_149_581, 0).saturating_mul(r.into())) + // Standard Error: 97_816 + .saturating_add(Weight::from_parts(310_093_178, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -1388,11 +1388,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + r * (576 ±0)` // Estimated: `6680 + r * (2637 ±3)` - // Minimum execution time: 265_466_000 picoseconds. - Weight::from_parts(279_646_000, 0) + // Minimum execution time: 333_145_000 picoseconds. + Weight::from_parts(337_988_000, 0) .saturating_add(Weight::from_parts(0, 6680)) - // Standard Error: 163_268 - .saturating_add(Weight::from_parts(247_945_972, 0).saturating_mul(r.into())) + // Standard Error: 154_127 + .saturating_add(Weight::from_parts(309_190_603, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1419,13 +1419,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1175 + t * (243 ±0)` // Estimated: `12065 + t * (5193 ±0)` - // Minimum execution time: 467_836_000 picoseconds. - Weight::from_parts(110_228_087, 0) + // Minimum execution time: 535_291_000 picoseconds. + Weight::from_parts(152_665_787, 0) .saturating_add(Weight::from_parts(0, 12065)) - // Standard Error: 11_265_346 - .saturating_add(Weight::from_parts(335_790_331, 0).saturating_mul(t.into())) + // Standard Error: 11_389_799 + .saturating_add(Weight::from_parts(350_922_410, 0).saturating_mul(t.into())) // Standard Error: 16 - .saturating_add(Weight::from_parts(1_022, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_041, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(6)) @@ -1455,11 +1455,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `917 + r * (255 ±0)` // Estimated: `9195 + r * (2730 ±0)` - // Minimum execution time: 657_748_000 picoseconds. - Weight::from_parts(661_654_000, 0) + // Minimum execution time: 772_399_000 picoseconds. + Weight::from_parts(777_836_000, 0) .saturating_add(Weight::from_parts(0, 9195)) - // Standard Error: 281_884 - .saturating_add(Weight::from_parts(377_265_668, 0).saturating_mul(r.into())) + // Standard Error: 262_184 + .saturating_add(Weight::from_parts(435_113_013, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(7)) @@ -1491,13 +1491,15 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1118 + t * (66 ±0)` // Estimated: `12032 + t * (2553 ±1)` - // Minimum execution time: 2_777_377_000 picoseconds. - Weight::from_parts(1_252_503_075, 0) + // Minimum execution time: 3_022_078_000 picoseconds. + Weight::from_parts(672_904_292, 0) .saturating_add(Weight::from_parts(0, 12032)) - // Standard Error: 20 - .saturating_add(Weight::from_parts(1_482, 0).saturating_mul(i.into())) - // Standard Error: 20 - .saturating_add(Weight::from_parts(1_640, 0).saturating_mul(s.into())) + // Standard Error: 6_402_950 + .saturating_add(Weight::from_parts(96_044_196, 0).saturating_mul(t.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_268, 0).saturating_mul(i.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_395, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(16)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(11)) @@ -1523,11 +1525,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `730 + r * (8 ±0)` // Estimated: `6669 + r * (8 ±0)` - // Minimum execution time: 271_138_000 picoseconds. - Weight::from_parts(279_276_912, 0) + // Minimum execution time: 326_064_000 picoseconds. + Weight::from_parts(335_257_480, 0) .saturating_add(Weight::from_parts(0, 6669)) - // Standard Error: 440 - .saturating_add(Weight::from_parts(421_751, 0).saturating_mul(r.into())) + // Standard Error: 422 + .saturating_add(Weight::from_parts(414_436, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1551,11 +1553,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `738` // Estimated: `6676` - // Minimum execution time: 272_116_000 picoseconds. - Weight::from_parts(293_929_764, 0) + // Minimum execution time: 330_700_000 picoseconds. + Weight::from_parts(351_112_082, 0) .saturating_add(Weight::from_parts(0, 6676)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_385, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_400, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1578,11 +1580,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `732 + r * (8 ±0)` // Estimated: `6674 + r * (8 ±0)` - // Minimum execution time: 267_435_000 picoseconds. - Weight::from_parts(282_423_488, 0) + // Minimum execution time: 327_163_000 picoseconds. + Weight::from_parts(341_709_806, 0) .saturating_add(Weight::from_parts(0, 6674)) - // Standard Error: 495 - .saturating_add(Weight::from_parts(819_744, 0).saturating_mul(r.into())) + // Standard Error: 510 + .saturating_add(Weight::from_parts(813_532, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1606,11 +1608,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `740` // Estimated: `6682` - // Minimum execution time: 258_379_000 picoseconds. - Weight::from_parts(306_057_546, 0) + // Minimum execution time: 330_249_000 picoseconds. + Weight::from_parts(360_373_719, 0) .saturating_add(Weight::from_parts(0, 6682)) // Standard Error: 1 - .saturating_add(Weight::from_parts(3_632, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(3_667, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1633,11 +1635,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `732 + r * (8 ±0)` // Estimated: `6676 + r * (8 ±0)` - // Minimum execution time: 269_173_000 picoseconds. - Weight::from_parts(280_316_791, 0) + // Minimum execution time: 330_380_000 picoseconds. + Weight::from_parts(339_242_365, 0) .saturating_add(Weight::from_parts(0, 6676)) - // Standard Error: 438 - .saturating_add(Weight::from_parts(484_319, 0).saturating_mul(r.into())) + // Standard Error: 487 + .saturating_add(Weight::from_parts(478_092, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1661,11 +1663,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `740` // Estimated: `6681` - // Minimum execution time: 275_355_000 picoseconds. - Weight::from_parts(296_438_094, 0) + // Minimum execution time: 333_128_000 picoseconds. + Weight::from_parts(356_675_399, 0) .saturating_add(Weight::from_parts(0, 6681)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_488, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_521, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1688,11 +1690,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `732 + r * (8 ±0)` // Estimated: `6673 + r * (8 ±0)` - // Minimum execution time: 271_968_000 picoseconds. - Weight::from_parts(280_924_740, 0) + // Minimum execution time: 326_885_000 picoseconds. + Weight::from_parts(337_517_499, 0) .saturating_add(Weight::from_parts(0, 6673)) - // Standard Error: 614 - .saturating_add(Weight::from_parts(487_356, 0).saturating_mul(r.into())) + // Standard Error: 424 + .saturating_add(Weight::from_parts(484_252, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1716,11 +1718,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `740` // Estimated: `6679` - // Minimum execution time: 264_567_000 picoseconds. - Weight::from_parts(297_550_041, 0) + // Minimum execution time: 328_832_000 picoseconds. + Weight::from_parts(355_224_214, 0) .saturating_add(Weight::from_parts(0, 6679)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_498, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_519, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1743,11 +1745,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `865 + n * (1 ±0)` // Estimated: `6802 + n * (1 ±0)` - // Minimum execution time: 320_039_000 picoseconds. - Weight::from_parts(344_046_760, 0) + // Minimum execution time: 393_678_000 picoseconds. + Weight::from_parts(408_740_288, 0) .saturating_add(Weight::from_parts(0, 6802)) - // Standard Error: 15 - .saturating_add(Weight::from_parts(6_573, 0).saturating_mul(n.into())) + // Standard Error: 14 + .saturating_add(Weight::from_parts(6_299, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1769,13 +1771,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_sr25519_verify(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `672 + r * (112 ±0)` + // Measured: `671 + r * (112 ±0)` // Estimated: `6616 + r * (112 ±0)` - // Minimum execution time: 275_707_000 picoseconds. - Weight::from_parts(325_303_090, 0) + // Minimum execution time: 330_383_000 picoseconds. + Weight::from_parts(361_670_471, 0) .saturating_add(Weight::from_parts(0, 6616)) - // Standard Error: 12_638 - .saturating_add(Weight::from_parts(55_836_870, 0).saturating_mul(r.into())) + // Standard Error: 6_773 + .saturating_add(Weight::from_parts(55_843_885, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 112).saturating_mul(r.into())) @@ -1799,11 +1801,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `775 + r * (76 ±0)` // Estimated: `6669 + r * (77 ±0)` - // Minimum execution time: 270_978_000 picoseconds. - Weight::from_parts(334_836_424, 0) + // Minimum execution time: 332_511_000 picoseconds. + Weight::from_parts(369_227_665, 0) .saturating_add(Weight::from_parts(0, 6669)) - // Standard Error: 16_070 - .saturating_add(Weight::from_parts(46_117_218, 0).saturating_mul(r.into())) + // Standard Error: 10_111 + .saturating_add(Weight::from_parts(45_924_372, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 77).saturating_mul(r.into())) @@ -1827,11 +1829,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `745 + r * (42 ±0)` // Estimated: `6684 + r * (42 ±0)` - // Minimum execution time: 274_334_000 picoseconds. - Weight::from_parts(301_301_796, 0) + // Minimum execution time: 333_762_000 picoseconds. + Weight::from_parts(352_306_892, 0) .saturating_add(Weight::from_parts(0, 6684)) - // Standard Error: 8_541 - .saturating_add(Weight::from_parts(12_133_169, 0).saturating_mul(r.into())) + // Standard Error: 5_477 + .saturating_add(Weight::from_parts(11_870_388, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 42).saturating_mul(r.into())) @@ -1855,11 +1857,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + r * (965 ±0)` // Estimated: `6675 + r * (3090 ±10)` - // Minimum execution time: 271_399_000 picoseconds. - Weight::from_parts(276_183_000, 0) + // Minimum execution time: 330_417_000 picoseconds. + Weight::from_parts(333_929_000, 0) .saturating_add(Weight::from_parts(0, 6675)) - // Standard Error: 46_475 - .saturating_add(Weight::from_parts(25_759_201, 0).saturating_mul(r.into())) + // Standard Error: 41_201 + .saturating_add(Weight::from_parts(24_399_063, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1885,11 +1887,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `796 + r * (131 ±0)` // Estimated: `6746 + r * (2606 ±0)` - // Minimum execution time: 275_705_000 picoseconds. - Weight::from_parts(292_292_274, 0) + // Minimum execution time: 331_485_000 picoseconds. + Weight::from_parts(349_223_224, 0) .saturating_add(Weight::from_parts(0, 6746)) - // Standard Error: 17_951 - .saturating_add(Weight::from_parts(6_156_740, 0).saturating_mul(r.into())) + // Standard Error: 20_624 + .saturating_add(Weight::from_parts(6_351_042, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1915,11 +1917,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `837 + r * (183 ±0)` // Estimated: `129453 + r * (2568 ±0)` - // Minimum execution time: 269_935_000 picoseconds. - Weight::from_parts(290_219_499, 0) + // Minimum execution time: 332_604_000 picoseconds. + Weight::from_parts(350_970_090, 0) .saturating_add(Weight::from_parts(0, 129453)) - // Standard Error: 22_050 - .saturating_add(Weight::from_parts(5_745_226, 0).saturating_mul(r.into())) + // Standard Error: 24_712 + .saturating_add(Weight::from_parts(5_561_035, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1945,11 +1947,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `726 + r * (3 ±0)` // Estimated: `6672 + r * (3 ±0)` - // Minimum execution time: 261_892_000 picoseconds. - Weight::from_parts(282_464_949, 0) + // Minimum execution time: 328_697_000 picoseconds. + Weight::from_parts(339_756_674, 0) .saturating_add(Weight::from_parts(0, 6672)) - // Standard Error: 460 - .saturating_add(Weight::from_parts(179_607, 0).saturating_mul(r.into())) + // Standard Error: 338 + .saturating_add(Weight::from_parts(183_753, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -1973,11 +1975,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1977 + r * (39 ±0)` // Estimated: `7767 + r * (40 ±0)` - // Minimum execution time: 271_960_000 picoseconds. - Weight::from_parts(321_251_357, 0) + // Minimum execution time: 332_657_000 picoseconds. + Weight::from_parts(379_607_426, 0) .saturating_add(Weight::from_parts(0, 7767)) - // Standard Error: 1_356 - .saturating_add(Weight::from_parts(310_170, 0).saturating_mul(r.into())) + // Standard Error: 1_004 + .saturating_add(Weight::from_parts(274_472, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 40).saturating_mul(r.into())) @@ -2003,11 +2005,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `729 + r * (3 ±0)` // Estimated: `6669 + r * (3 ±0)` - // Minimum execution time: 261_428_000 picoseconds. - Weight::from_parts(283_393_932, 0) + // Minimum execution time: 328_693_000 picoseconds. + Weight::from_parts(342_815_135, 0) .saturating_add(Weight::from_parts(0, 6669)) - // Standard Error: 425 - .saturating_add(Weight::from_parts(162_462, 0).saturating_mul(r.into())) + // Standard Error: 344 + .saturating_add(Weight::from_parts(161_691, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -2017,10 +2019,10 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_715_000 picoseconds. - Weight::from_parts(2_620_298, 0) + // Minimum execution time: 1_730_000 picoseconds. + Weight::from_parts(2_362_680, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 41 - .saturating_add(Weight::from_parts(10_699, 0).saturating_mul(r.into())) + // Standard Error: 40 + .saturating_add(Weight::from_parts(10_843, 0).saturating_mul(r.into())) } } diff --git a/runtime/trappist/src/weights/pallet_democracy.rs b/runtime/trappist/src/weights/pallet_democracy.rs index da0f1fd9..1b42560a 100644 --- a/runtime/trappist/src/weights/pallet_democracy.rs +++ b/runtime/trappist/src/weights/pallet_democracy.rs @@ -62,8 +62,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4768` // Estimated: `18187` - // Minimum execution time: 46_459_000 picoseconds. - Weight::from_parts(47_474_000, 0) + // Minimum execution time: 44_536_000 picoseconds. + Weight::from_parts(45_703_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -74,8 +74,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3523` // Estimated: `6695` - // Minimum execution time: 39_561_000 picoseconds. - Weight::from_parts(40_719_000, 0) + // Minimum execution time: 37_837_000 picoseconds. + Weight::from_parts(39_041_000, 0) .saturating_add(Weight::from_parts(0, 6695)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3399` // Estimated: `7260` - // Minimum execution time: 54_197_000 picoseconds. - Weight::from_parts(55_757_000, 0) + // Minimum execution time: 52_994_000 picoseconds. + Weight::from_parts(55_670_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -110,8 +110,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3421` // Estimated: `7260` - // Minimum execution time: 59_056_000 picoseconds. - Weight::from_parts(61_145_000, 0) + // Minimum execution time: 58_542_000 picoseconds. + Weight::from_parts(60_007_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -126,8 +126,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `333` // Estimated: `3666` - // Minimum execution time: 26_099_000 picoseconds. - Weight::from_parts(26_917_000, 0) + // Minimum execution time: 25_648_000 picoseconds. + Weight::from_parts(26_305_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -150,8 +150,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6216` // Estimated: `18187` - // Minimum execution time: 112_285_000 picoseconds. - Weight::from_parts(113_985_000, 0) + // Minimum execution time: 109_983_000 picoseconds. + Weight::from_parts(111_527_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(8)) @@ -164,8 +164,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3383` // Estimated: `6703` - // Minimum execution time: 13_111_000 picoseconds. - Weight::from_parts(13_666_000, 0) + // Minimum execution time: 13_017_000 picoseconds. + Weight::from_parts(13_783_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -176,8 +176,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_812_000 picoseconds. - Weight::from_parts(3_009_000, 0) + // Minimum execution time: 2_817_000 picoseconds. + Weight::from_parts(3_030_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -187,8 +187,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_869_000 picoseconds. - Weight::from_parts(3_050_000, 0) + // Minimum execution time: 2_859_000 picoseconds. + Weight::from_parts(3_012_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -204,8 +204,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 27_271_000 picoseconds. - Weight::from_parts(27_992_000, 0) + // Minimum execution time: 26_839_000 picoseconds. + Weight::from_parts(27_609_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(5)) @@ -220,8 +220,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3486` // Estimated: `6703` - // Minimum execution time: 29_594_000 picoseconds. - Weight::from_parts(30_286_000, 0) + // Minimum execution time: 29_460_000 picoseconds. + Weight::from_parts(30_255_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -238,8 +238,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6127` // Estimated: `18187` - // Minimum execution time: 92_367_000 picoseconds. - Weight::from_parts(94_607_000, 0) + // Minimum execution time: 92_198_000 picoseconds. + Weight::from_parts(93_190_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -252,8 +252,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `238` // Estimated: `3518` - // Minimum execution time: 19_935_000 picoseconds. - Weight::from_parts(20_442_000, 0) + // Minimum execution time: 19_356_000 picoseconds. + Weight::from_parts(19_773_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -269,11 +269,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `1489 + r * (2676 ±0)` - // Minimum execution time: 7_420_000 picoseconds. - Weight::from_parts(8_270_117, 0) + // Minimum execution time: 7_423_000 picoseconds. + Weight::from_parts(8_128_432, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 6_530 - .saturating_add(Weight::from_parts(3_152_245, 0).saturating_mul(r.into())) + // Standard Error: 6_452 + .saturating_add(Weight::from_parts(3_133_741, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -296,11 +296,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `18187 + r * (2676 ±0)` - // Minimum execution time: 10_562_000 picoseconds. - Weight::from_parts(11_401_740, 0) + // Minimum execution time: 10_282_000 picoseconds. + Weight::from_parts(11_115_836, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 7_311 - .saturating_add(Weight::from_parts(3_197_237, 0).saturating_mul(r.into())) + // Standard Error: 6_317 + .saturating_add(Weight::from_parts(3_177_597, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -319,11 +319,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (108 ±0)` // Estimated: `19800 + r * (2676 ±0)` - // Minimum execution time: 39_947_000 picoseconds. - Weight::from_parts(45_402_891, 0) + // Minimum execution time: 39_184_000 picoseconds. + Weight::from_parts(44_966_513, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 7_049 - .saturating_add(Weight::from_parts(4_099_681, 0).saturating_mul(r.into())) + // Standard Error: 8_865 + .saturating_add(Weight::from_parts(4_048_901, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -339,11 +339,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `460 + r * (108 ±0)` // Estimated: `13530 + r * (2676 ±0)` - // Minimum execution time: 20_190_000 picoseconds. - Weight::from_parts(21_821_990, 0) + // Minimum execution time: 19_708_000 picoseconds. + Weight::from_parts(20_357_543, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 7_689 - .saturating_add(Weight::from_parts(4_084_259, 0).saturating_mul(r.into())) + // Standard Error: 6_470 + .saturating_add(Weight::from_parts(3_985_854, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -356,8 +356,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_955_000 picoseconds. - Weight::from_parts(3_115_000, 0) + // Minimum execution time: 3_012_000 picoseconds. + Weight::from_parts(3_149_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -374,11 +374,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `455` // Estimated: `7260` - // Minimum execution time: 22_494_000 picoseconds. - Weight::from_parts(37_153_243, 0) + // Minimum execution time: 22_333_000 picoseconds. + Weight::from_parts(36_801_929, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_520 - .saturating_add(Weight::from_parts(106_412, 0).saturating_mul(r.into())) + // Standard Error: 3_744 + .saturating_add(Weight::from_parts(110_843, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -395,11 +395,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `456 + r * (22 ±0)` // Estimated: `7260` - // Minimum execution time: 33_037_000 picoseconds. - Weight::from_parts(35_830_477, 0) + // Minimum execution time: 32_191_000 picoseconds. + Weight::from_parts(35_476_416, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_731 - .saturating_add(Weight::from_parts(131_945, 0).saturating_mul(r.into())) + // Standard Error: 2_065 + .saturating_add(Weight::from_parts(129_338, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -412,11 +412,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_218_000 picoseconds. - Weight::from_parts(18_245_596, 0) + // Minimum execution time: 15_003_000 picoseconds. + Weight::from_parts(18_127_140, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_655 - .saturating_add(Weight::from_parts(125_080, 0).saturating_mul(r.into())) + // Standard Error: 1_741 + .saturating_add(Weight::from_parts(121_912, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -429,11 +429,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_160_000 picoseconds. - Weight::from_parts(18_504_089, 0) + // Minimum execution time: 14_798_000 picoseconds. + Weight::from_parts(18_427_275, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_843 - .saturating_add(Weight::from_parts(128_144, 0).saturating_mul(r.into())) + // Standard Error: 1_865 + .saturating_add(Weight::from_parts(124_395, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -447,8 +447,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `323` // Estimated: `3556` - // Minimum execution time: 18_409_000 picoseconds. - Weight::from_parts(18_797_000, 0) + // Minimum execution time: 18_545_000 picoseconds. + Weight::from_parts(19_106_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -461,8 +461,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 16_533_000 picoseconds. - Weight::from_parts(17_046_000, 0) + // Minimum execution time: 16_650_000 picoseconds. + Weight::from_parts(17_152_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -477,8 +477,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4855` // Estimated: `18187` - // Minimum execution time: 41_120_000 picoseconds. - Weight::from_parts(41_900_000, 0) + // Minimum execution time: 42_065_000 picoseconds. + Weight::from_parts(43_161_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -491,8 +491,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4789` // Estimated: `18187` - // Minimum execution time: 38_461_000 picoseconds. - Weight::from_parts(39_301_000, 0) + // Minimum execution time: 39_436_000 picoseconds. + Weight::from_parts(40_254_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -505,8 +505,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 14_820_000 picoseconds. - Weight::from_parts(15_256_000, 0) + // Minimum execution time: 14_381_000 picoseconds. + Weight::from_parts(14_862_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -519,8 +519,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3666` - // Minimum execution time: 18_676_000 picoseconds. - Weight::from_parts(19_015_000, 0) + // Minimum execution time: 18_411_000 picoseconds. + Weight::from_parts(18_866_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_dex.rs b/runtime/trappist/src/weights/pallet_dex.rs index bf7ed3e4..8a6aa028 100644 --- a/runtime/trappist/src/weights/pallet_dex.rs +++ b/runtime/trappist/src/weights/pallet_dex.rs @@ -62,8 +62,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `464` // Estimated: `8817` - // Minimum execution time: 127_039_000 picoseconds. - Weight::from_parts(130_074_000, 0) + // Minimum execution time: 121_318_000 picoseconds. + Weight::from_parts(124_040_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -80,8 +80,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 116_736_000 picoseconds. - Weight::from_parts(119_108_000, 0) + // Minimum execution time: 114_740_000 picoseconds. + Weight::from_parts(116_812_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -98,8 +98,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 124_106_000 picoseconds. - Weight::from_parts(127_022_000, 0) + // Minimum execution time: 120_522_000 picoseconds. + Weight::from_parts(123_925_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -116,8 +116,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 94_717_000 picoseconds. - Weight::from_parts(96_608_000, 0) + // Minimum execution time: 92_229_000 picoseconds. + Weight::from_parts(94_137_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -134,8 +134,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 97_070_000 picoseconds. - Weight::from_parts(99_896_000, 0) + // Minimum execution time: 94_161_000 picoseconds. + Weight::from_parts(95_745_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -150,8 +150,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1217` // Estimated: `11426` - // Minimum execution time: 108_381_000 picoseconds. - Weight::from_parts(109_990_000, 0) + // Minimum execution time: 103_406_000 picoseconds. + Weight::from_parts(106_595_000, 0) .saturating_add(Weight::from_parts(0, 11426)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(8)) diff --git a/runtime/trappist/src/weights/pallet_identity.rs b/runtime/trappist/src/weights/pallet_identity.rs index 32e6dfec..2f9fd24c 100644 --- a/runtime/trappist/src/weights/pallet_identity.rs +++ b/runtime/trappist/src/weights/pallet_identity.rs @@ -57,11 +57,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `32 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 12_208_000 picoseconds. - Weight::from_parts(12_913_526, 0) + // Minimum execution time: 11_682_000 picoseconds. + Weight::from_parts(12_716_438, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_763 - .saturating_add(Weight::from_parts(92_821, 0).saturating_mul(r.into())) + // Standard Error: 1_729 + .saturating_add(Weight::from_parts(78_935, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -73,13 +73,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `442 + r * (5 ±0)` // Estimated: `11003` - // Minimum execution time: 33_022_000 picoseconds. - Weight::from_parts(31_332_567, 0) + // Minimum execution time: 32_311_000 picoseconds. + Weight::from_parts(30_854_780, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 2_640 - .saturating_add(Weight::from_parts(114_685, 0).saturating_mul(r.into())) - // Standard Error: 515 - .saturating_add(Weight::from_parts(480_201, 0).saturating_mul(x.into())) + // Standard Error: 3_093 + .saturating_add(Weight::from_parts(104_973, 0).saturating_mul(r.into())) + // Standard Error: 603 + .saturating_add(Weight::from_parts(484_901, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -94,11 +94,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `11003 + s * (2589 ±0)` - // Minimum execution time: 8_790_000 picoseconds. - Weight::from_parts(21_935_214, 0) + // Minimum execution time: 8_833_000 picoseconds. + Weight::from_parts(21_923_683, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_097 - .saturating_add(Weight::from_parts(3_406_564, 0).saturating_mul(s.into())) + // Standard Error: 4_146 + .saturating_add(Weight::from_parts(3_358_644, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -116,11 +116,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `194 + p * (32 ±0)` // Estimated: `11003` - // Minimum execution time: 8_747_000 picoseconds. - Weight::from_parts(23_670_851, 0) + // Minimum execution time: 8_870_000 picoseconds. + Weight::from_parts(22_514_062, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_853 - .saturating_add(Weight::from_parts(1_341_101, 0).saturating_mul(p.into())) + // Standard Error: 3_607 + .saturating_add(Weight::from_parts(1_354_350, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) @@ -138,15 +138,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `469 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 59_076_000 picoseconds. - Weight::from_parts(31_340_799, 0) + // Minimum execution time: 57_824_000 picoseconds. + Weight::from_parts(31_381_479, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 17_534 - .saturating_add(Weight::from_parts(184_753, 0).saturating_mul(r.into())) - // Standard Error: 3_424 - .saturating_add(Weight::from_parts(1_343_476, 0).saturating_mul(s.into())) - // Standard Error: 3_424 - .saturating_add(Weight::from_parts(283_431, 0).saturating_mul(x.into())) + // Standard Error: 9_230 + .saturating_add(Weight::from_parts(158_474, 0).saturating_mul(r.into())) + // Standard Error: 1_802 + .saturating_add(Weight::from_parts(1_311_177, 0).saturating_mul(s.into())) + // Standard Error: 1_802 + .saturating_add(Weight::from_parts(276_111, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -161,13 +161,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `367 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 33_019_000 picoseconds. - Weight::from_parts(31_925_377, 0) + // Minimum execution time: 32_571_000 picoseconds. + Weight::from_parts(30_845_345, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_034 - .saturating_add(Weight::from_parts(118_036, 0).saturating_mul(r.into())) - // Standard Error: 787 - .saturating_add(Weight::from_parts(486_438, 0).saturating_mul(x.into())) + // Standard Error: 4_379 + .saturating_add(Weight::from_parts(150_598, 0).saturating_mul(r.into())) + // Standard Error: 854 + .saturating_add(Weight::from_parts(529_865, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -179,13 +179,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `398 + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 30_144_000 picoseconds. - Weight::from_parts(29_532_985, 0) + // Minimum execution time: 28_834_000 picoseconds. + Weight::from_parts(29_080_385, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_402 - .saturating_add(Weight::from_parts(84_401, 0).saturating_mul(r.into())) - // Standard Error: 663 - .saturating_add(Weight::from_parts(474_353, 0).saturating_mul(x.into())) + // Standard Error: 3_255 + .saturating_add(Weight::from_parts(79_877, 0).saturating_mul(r.into())) + // Standard Error: 635 + .saturating_add(Weight::from_parts(500_679, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -196,11 +196,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_436_000 picoseconds. - Weight::from_parts(8_120_258, 0) + // Minimum execution time: 7_346_000 picoseconds. + Weight::from_parts(8_049_240, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_403 - .saturating_add(Weight::from_parts(72_200, 0).saturating_mul(r.into())) + // Standard Error: 1_321 + .saturating_add(Weight::from_parts(67_474, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -211,11 +211,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_049_000 picoseconds. - Weight::from_parts(7_537_140, 0) + // Minimum execution time: 6_795_000 picoseconds. + Weight::from_parts(7_238_558, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_003 - .saturating_add(Weight::from_parts(69_569, 0).saturating_mul(r.into())) + // Standard Error: 902 + .saturating_add(Weight::from_parts(65_687, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -226,11 +226,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 6_707_000 picoseconds. - Weight::from_parts(7_319_961, 0) + // Minimum execution time: 6_720_000 picoseconds. + Weight::from_parts(7_119_378, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_032 - .saturating_add(Weight::from_parts(66_059, 0).saturating_mul(r.into())) + // Standard Error: 948 + .saturating_add(Weight::from_parts(69_205, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -244,13 +244,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `445 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 22_689_000 picoseconds. - Weight::from_parts(22_044_058, 0) + // Minimum execution time: 22_787_000 picoseconds. + Weight::from_parts(21_181_337, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_261 - .saturating_add(Weight::from_parts(96_854, 0).saturating_mul(r.into())) - // Standard Error: 603 - .saturating_add(Weight::from_parts(757_808, 0).saturating_mul(x.into())) + // Standard Error: 3_911 + .saturating_add(Weight::from_parts(124_498, 0).saturating_mul(r.into())) + // Standard Error: 723 + .saturating_add(Weight::from_parts(791_944, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -269,15 +269,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `643 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 64_374_000 picoseconds. - Weight::from_parts(40_780_538, 0) + // Minimum execution time: 63_525_000 picoseconds. + Weight::from_parts(37_149_918, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 17_921 - .saturating_add(Weight::from_parts(46_666, 0).saturating_mul(r.into())) - // Standard Error: 3_499 - .saturating_add(Weight::from_parts(1_383_780, 0).saturating_mul(s.into())) - // Standard Error: 3_499 - .saturating_add(Weight::from_parts(270_597, 0).saturating_mul(x.into())) + // Standard Error: 9_206 + .saturating_add(Weight::from_parts(128_727, 0).saturating_mul(r.into())) + // Standard Error: 1_797 + .saturating_add(Weight::from_parts(1_334_401, 0).saturating_mul(s.into())) + // Standard Error: 1_797 + .saturating_add(Weight::from_parts(278_240, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -293,11 +293,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `475 + s * (36 ±0)` // Estimated: `11003` - // Minimum execution time: 29_588_000 picoseconds. - Weight::from_parts(33_369_507, 0) + // Minimum execution time: 28_828_000 picoseconds. + Weight::from_parts(32_701_140, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 1_090 - .saturating_add(Weight::from_parts(87_958, 0).saturating_mul(s.into())) + // Standard Error: 1_024 + .saturating_add(Weight::from_parts(91_421, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -310,11 +310,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `591 + s * (3 ±0)` // Estimated: `11003` - // Minimum execution time: 12_394_000 picoseconds. - Weight::from_parts(13_852_508, 0) + // Minimum execution time: 12_355_000 picoseconds. + Weight::from_parts(13_556_186, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 416 - .saturating_add(Weight::from_parts(38_368, 0).saturating_mul(s.into())) + // Standard Error: 412 + .saturating_add(Weight::from_parts(40_115, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -329,11 +329,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `638 + s * (35 ±0)` // Estimated: `11003` - // Minimum execution time: 32_620_000 picoseconds. - Weight::from_parts(34_814_120, 0) + // Minimum execution time: 32_300_000 picoseconds. + Weight::from_parts(34_279_894, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 806 - .saturating_add(Weight::from_parts(84_607, 0).saturating_mul(s.into())) + // Standard Error: 697 + .saturating_add(Weight::from_parts(83_669, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -348,11 +348,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `667 + s * (37 ±0)` // Estimated: `6723` - // Minimum execution time: 24_489_000 picoseconds. - Weight::from_parts(26_050_733, 0) + // Minimum execution time: 23_849_000 picoseconds. + Weight::from_parts(25_715_440, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 680 - .saturating_add(Weight::from_parts(79_672, 0).saturating_mul(s.into())) + // Standard Error: 761 + .saturating_add(Weight::from_parts(82_405, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_lockdown_mode.rs b/runtime/trappist/src/weights/pallet_lockdown_mode.rs index 46a30fdd..9dda707b 100644 --- a/runtime/trappist/src/weights/pallet_lockdown_mode.rs +++ b/runtime/trappist/src/weights/pallet_lockdown_mode.rs @@ -58,8 +58,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 13_897_000 picoseconds. - Weight::from_parts(14_351_000, 0) + // Minimum execution time: 13_278_000 picoseconds. + Weight::from_parts(13_751_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 13_438_000 picoseconds. - Weight::from_parts(13_950_000, 0) + // Minimum execution time: 13_302_000 picoseconds. + Weight::from_parts(13_714_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_multisig.rs b/runtime/trappist/src/weights/pallet_multisig.rs index 08990ea8..697af815 100644 --- a/runtime/trappist/src/weights/pallet_multisig.rs +++ b/runtime/trappist/src/weights/pallet_multisig.rs @@ -57,11 +57,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 18_826_000 picoseconds. - Weight::from_parts(19_405_840, 0) + // Minimum execution time: 18_686_000 picoseconds. + Weight::from_parts(19_390_869, 0) .saturating_add(Weight::from_parts(0, 1486)) // Standard Error: 4 - .saturating_add(Weight::from_parts(560, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(587, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Multisig::Multisigs` (r:1 w:1) @@ -72,13 +72,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `262 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 44_701_000 picoseconds. - Weight::from_parts(34_421_145, 0) + // Minimum execution time: 44_025_000 picoseconds. + Weight::from_parts(34_224_817, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 731 - .saturating_add(Weight::from_parts(118_282, 0).saturating_mul(s.into())) - // Standard Error: 7 - .saturating_add(Weight::from_parts(1_412, 0).saturating_mul(z.into())) + // Standard Error: 713 + .saturating_add(Weight::from_parts(119_184, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_482, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -90,13 +90,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 28_980_000 picoseconds. - Weight::from_parts(19_476_408, 0) + // Minimum execution time: 28_722_000 picoseconds. + Weight::from_parts(19_775_123, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 583 - .saturating_add(Weight::from_parts(106_081, 0).saturating_mul(s.into())) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_500, 0).saturating_mul(z.into())) + // Standard Error: 448 + .saturating_add(Weight::from_parts(103_379, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_498, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -112,13 +112,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `485 + s * (33 ±0)` // Estimated: `6811` - // Minimum execution time: 54_488_000 picoseconds. - Weight::from_parts(42_508_344, 0) + // Minimum execution time: 54_475_000 picoseconds. + Weight::from_parts(41_144_365, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_256 - .saturating_add(Weight::from_parts(146_312, 0).saturating_mul(s.into())) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_459, 0).saturating_mul(z.into())) + // Standard Error: 893 + .saturating_add(Weight::from_parts(152_166, 0).saturating_mul(s.into())) + // Standard Error: 8 + .saturating_add(Weight::from_parts(1_599, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -129,11 +129,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `263 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 31_782_000 picoseconds. - Weight::from_parts(32_480_848, 0) + // Minimum execution time: 32_145_000 picoseconds. + Weight::from_parts(32_647_517, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 741 - .saturating_add(Weight::from_parts(119_105, 0).saturating_mul(s.into())) + // Standard Error: 664 + .saturating_add(Weight::from_parts(116_713, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -144,11 +144,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 17_743_000 picoseconds. - Weight::from_parts(18_043_885, 0) + // Minimum execution time: 17_915_000 picoseconds. + Weight::from_parts(18_383_828, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 549 - .saturating_add(Weight::from_parts(110_120, 0).saturating_mul(s.into())) + // Standard Error: 494 + .saturating_add(Weight::from_parts(101_772, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -159,11 +159,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `454 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 33_283_000 picoseconds. - Weight::from_parts(34_051_815, 0) + // Minimum execution time: 33_683_000 picoseconds. + Weight::from_parts(34_039_815, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 842 - .saturating_add(Weight::from_parts(117_915, 0).saturating_mul(s.into())) + // Standard Error: 653 + .saturating_add(Weight::from_parts(118_073, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/trappist/src/weights/pallet_preimage.rs b/runtime/trappist/src/weights/pallet_preimage.rs index 2321e10f..ce9078a6 100644 --- a/runtime/trappist/src/weights/pallet_preimage.rs +++ b/runtime/trappist/src/weights/pallet_preimage.rs @@ -59,11 +59,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `143` // Estimated: `3556` - // Minimum execution time: 29_621_000 picoseconds. - Weight::from_parts(29_957_000, 0) + // Minimum execution time: 28_800_000 picoseconds. + Weight::from_parts(29_094_000, 0) .saturating_add(Weight::from_parts(0, 3556)) // Standard Error: 4 - .saturating_add(Weight::from_parts(2_321, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(2_331, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,11 +76,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 16_842_000 picoseconds. - Weight::from_parts(17_010_000, 0) + // Minimum execution time: 16_348_000 picoseconds. + Weight::from_parts(64_916_806, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 4 - .saturating_add(Weight::from_parts(2_356, 0).saturating_mul(s.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(2_281, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -93,11 +93,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 15_902_000 picoseconds. - Weight::from_parts(2_874_556, 0) + // Minimum execution time: 15_665_000 picoseconds. + Weight::from_parts(15_868_000, 0) .saturating_add(Weight::from_parts(0, 3556)) // Standard Error: 5 - .saturating_add(Weight::from_parts(2_314, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(2_359, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -109,8 +109,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `289` // Estimated: `3556` - // Minimum execution time: 45_178_000 picoseconds. - Weight::from_parts(51_658_000, 0) + // Minimum execution time: 38_581_000 picoseconds. + Weight::from_parts(40_856_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -123,8 +123,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 25_935_000 picoseconds. - Weight::from_parts(31_307_000, 0) + // Minimum execution time: 22_651_000 picoseconds. + Weight::from_parts(23_247_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -135,8 +135,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `188` // Estimated: `3556` - // Minimum execution time: 23_264_000 picoseconds. - Weight::from_parts(26_462_000, 0) + // Minimum execution time: 20_169_000 picoseconds. + Weight::from_parts(21_181_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -147,8 +147,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 14_672_000 picoseconds. - Weight::from_parts(16_697_000, 0) + // Minimum execution time: 13_384_000 picoseconds. + Weight::from_parts(13_856_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -159,8 +159,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 16_606_000 picoseconds. - Weight::from_parts(17_445_000, 0) + // Minimum execution time: 16_700_000 picoseconds. + Weight::from_parts(17_033_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -171,8 +171,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 9_466_000 picoseconds. - Weight::from_parts(9_903_000, 0) + // Minimum execution time: 9_475_000 picoseconds. + Weight::from_parts(9_891_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -185,8 +185,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 23_831_000 picoseconds. - Weight::from_parts(26_848_000, 0) + // Minimum execution time: 22_095_000 picoseconds. + Weight::from_parts(23_532_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -197,8 +197,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 9_153_000 picoseconds. - Weight::from_parts(9_474_000, 0) + // Minimum execution time: 9_531_000 picoseconds. + Weight::from_parts(9_827_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -209,8 +209,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 9_013_000 picoseconds. - Weight::from_parts(9_708_000, 0) + // Minimum execution time: 9_302_000 picoseconds. + Weight::from_parts(9_586_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_scheduler.rs b/runtime/trappist/src/weights/pallet_scheduler.rs index 92ace60a..6fad4877 100644 --- a/runtime/trappist/src/weights/pallet_scheduler.rs +++ b/runtime/trappist/src/weights/pallet_scheduler.rs @@ -56,8 +56,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31` // Estimated: `1489` - // Minimum execution time: 3_320_000 picoseconds. - Weight::from_parts(3_411_000, 0) + // Minimum execution time: 3_404_000 picoseconds. + Weight::from_parts(3_564_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -69,11 +69,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 3_071_000 picoseconds. - Weight::from_parts(3_140_000, 0) + // Minimum execution time: 3_050_000 picoseconds. + Weight::from_parts(235_120, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 1_167 - .saturating_add(Weight::from_parts(936_933, 0).saturating_mul(s.into())) + // Standard Error: 2_148 + .saturating_add(Weight::from_parts(928_922, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -81,8 +81,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_609_000 picoseconds. - Weight::from_parts(5_791_000, 0) + // Minimum execution time: 5_510_000 picoseconds. + Weight::from_parts(5_705_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -94,11 +94,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 20_541_000 picoseconds. - Weight::from_parts(20_838_000, 0) + // Minimum execution time: 20_463_000 picoseconds. + Weight::from_parts(20_544_000, 0) .saturating_add(Weight::from_parts(0, 3644)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_226, 0).saturating_mul(s.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(1_356, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -109,8 +109,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_882_000 picoseconds. - Weight::from_parts(7_136_000, 0) + // Minimum execution time: 6_758_000 picoseconds. + Weight::from_parts(7_128_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -118,8 +118,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_550_000 picoseconds. - Weight::from_parts(5_833_000, 0) + // Minimum execution time: 5_504_000 picoseconds. + Weight::from_parts(5_744_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -128,8 +128,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 6_499_000 picoseconds. - Weight::from_parts(6_783_000, 0) + // Minimum execution time: 6_408_000 picoseconds. + Weight::from_parts(6_561_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -137,8 +137,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_656_000 picoseconds. - Weight::from_parts(2_813_000, 0) + // Minimum execution time: 2_460_000 picoseconds. + Weight::from_parts(2_617_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -148,11 +148,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 12_114_000 picoseconds. - Weight::from_parts(8_478_132, 0) + // Minimum execution time: 12_243_000 picoseconds. + Weight::from_parts(11_321_982, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_351 - .saturating_add(Weight::from_parts(985_384, 0).saturating_mul(s.into())) + // Standard Error: 2_258 + .saturating_add(Weight::from_parts(944_337, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,11 +165,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 17_764_000 picoseconds. - Weight::from_parts(7_101_009, 0) + // Minimum execution time: 17_151_000 picoseconds. + Weight::from_parts(10_679_872, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_404 - .saturating_add(Weight::from_parts(1_681_237, 0).saturating_mul(s.into())) + // Standard Error: 2_501 + .saturating_add(Weight::from_parts(1_648_731, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -182,11 +182,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `596 + s * (178 ±0)` // Estimated: `402327` - // Minimum execution time: 15_365_000 picoseconds. - Weight::from_parts(13_251_962, 0) + // Minimum execution time: 15_411_000 picoseconds. + Weight::from_parts(16_936_208, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_241 - .saturating_add(Weight::from_parts(996_562, 0).saturating_mul(s.into())) + // Standard Error: 2_308 + .saturating_add(Weight::from_parts(949_432, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -199,11 +199,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `709 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 19_249_000 picoseconds. - Weight::from_parts(9_307_237, 0) + // Minimum execution time: 18_544_000 picoseconds. + Weight::from_parts(13_625_595, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_407 - .saturating_add(Weight::from_parts(1_696_104, 0).saturating_mul(s.into())) + // Standard Error: 2_535 + .saturating_add(Weight::from_parts(1_652_406, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_session.rs b/runtime/trappist/src/weights/pallet_session.rs index f781a0f2..e72b6f1b 100644 --- a/runtime/trappist/src/weights/pallet_session.rs +++ b/runtime/trappist/src/weights/pallet_session.rs @@ -58,8 +58,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `297` // Estimated: `3762` - // Minimum execution time: 15_475_000 picoseconds. - Weight::from_parts(16_081_000, 0) + // Minimum execution time: 15_632_000 picoseconds. + Weight::from_parts(16_475_000, 0) .saturating_add(Weight::from_parts(0, 3762)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `279` // Estimated: `3744` - // Minimum execution time: 10_918_000 picoseconds. - Weight::from_parts(11_265_000, 0) + // Minimum execution time: 10_932_000 picoseconds. + Weight::from_parts(11_673_000, 0) .saturating_add(Weight::from_parts(0, 3744)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_timestamp.rs b/runtime/trappist/src/weights/pallet_timestamp.rs index 31bcda1c..b728b8ba 100644 --- a/runtime/trappist/src/weights/pallet_timestamp.rs +++ b/runtime/trappist/src/weights/pallet_timestamp.rs @@ -58,8 +58,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `190` // Estimated: `1493` - // Minimum execution time: 9_297_000 picoseconds. - Weight::from_parts(9_720_000, 0) + // Minimum execution time: 9_409_000 picoseconds. + Weight::from_parts(9_864_000, 0) .saturating_add(Weight::from_parts(0, 1493)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `128` // Estimated: `0` - // Minimum execution time: 4_602_000 picoseconds. - Weight::from_parts(4_841_000, 0) + // Minimum execution time: 4_595_000 picoseconds. + Weight::from_parts(4_799_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/pallet_treasury.rs b/runtime/trappist/src/weights/pallet_treasury.rs index 0ad7d7b4..e6711f34 100644 --- a/runtime/trappist/src/weights/pallet_treasury.rs +++ b/runtime/trappist/src/weights/pallet_treasury.rs @@ -54,8 +54,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 214_000 picoseconds. - Weight::from_parts(241_000, 0) + // Minimum execution time: 222_000 picoseconds. + Weight::from_parts(282_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Treasury::ProposalCount` (r:1 w:1) @@ -66,8 +66,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `107` // Estimated: `1489` - // Minimum execution time: 26_840_000 picoseconds. - Weight::from_parts(28_050_000, 0) + // Minimum execution time: 25_979_000 picoseconds. + Weight::from_parts(27_137_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -80,8 +80,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `368` // Estimated: `6196` - // Minimum execution time: 42_915_000 picoseconds. - Weight::from_parts(43_480_000, 0) + // Minimum execution time: 41_371_000 picoseconds. + Weight::from_parts(42_606_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -95,11 +95,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `433 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 8_840_000 picoseconds. - Weight::from_parts(11_319_218, 0) + // Minimum execution time: 8_749_000 picoseconds. + Weight::from_parts(11_159_903, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 914 - .saturating_add(Weight::from_parts(81_897, 0).saturating_mul(p.into())) + // Standard Error: 969 + .saturating_add(Weight::from_parts(79_017, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -109,8 +109,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `90` // Estimated: `1887` - // Minimum execution time: 6_290_000 picoseconds. - Weight::from_parts(6_560_000, 0) + // Minimum execution time: 6_318_000 picoseconds. + Weight::from_parts(6_440_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -130,11 +130,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + p * (251 ±0)` // Estimated: `3593 + p * (5206 ±0)` - // Minimum execution time: 28_894_000 picoseconds. - Weight::from_parts(33_276_038, 0) + // Minimum execution time: 27_971_000 picoseconds. + Weight::from_parts(32_166_729, 0) .saturating_add(Weight::from_parts(0, 3593)) - // Standard Error: 16_362 - .saturating_add(Weight::from_parts(41_241_889, 0).saturating_mul(p.into())) + // Standard Error: 17_341 + .saturating_add(Weight::from_parts(39_687_696, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_uniques.rs b/runtime/trappist/src/weights/pallet_uniques.rs index 53171231..dd40df64 100644 --- a/runtime/trappist/src/weights/pallet_uniques.rs +++ b/runtime/trappist/src/weights/pallet_uniques.rs @@ -58,8 +58,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179` // Estimated: `3643` - // Minimum execution time: 29_037_000 picoseconds. - Weight::from_parts(29_787_000, 0) + // Minimum execution time: 28_938_000 picoseconds. + Weight::from_parts(29_700_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3643` - // Minimum execution time: 14_314_000 picoseconds. - Weight::from_parts(14_853_000, 0) + // Minimum execution time: 14_474_000 picoseconds. + Weight::from_parts(14_998_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -101,15 +101,15 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `327 + a * (107 ±0) + m * (56 ±0) + n * (76 ±0)` // Estimated: `3643 + a * (2647 ±0) + m * (2662 ±0) + n * (2597 ±0)` - // Minimum execution time: 2_746_430_000 picoseconds. - Weight::from_parts(2_782_739_000, 0) + // Minimum execution time: 2_694_836_000 picoseconds. + Weight::from_parts(2_722_173_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 28_933 - .saturating_add(Weight::from_parts(7_082_369, 0).saturating_mul(n.into())) - // Standard Error: 28_933 - .saturating_add(Weight::from_parts(352_254, 0).saturating_mul(m.into())) - // Standard Error: 28_933 - .saturating_add(Weight::from_parts(379_599, 0).saturating_mul(a.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(7_029_745, 0).saturating_mul(n.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(310_212, 0).saturating_mul(m.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(359_481, 0).saturating_mul(a.into())) .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(m.into()))) @@ -134,8 +134,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 34_592_000 picoseconds. - Weight::from_parts(35_284_000, 0) + // Minimum execution time: 33_754_000 picoseconds. + Weight::from_parts(34_517_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -152,8 +152,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 36_295_000 picoseconds. - Weight::from_parts(37_156_000, 0) + // Minimum execution time: 36_771_000 picoseconds. + Weight::from_parts(37_512_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -170,8 +170,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 25_835_000 picoseconds. - Weight::from_parts(26_511_000, 0) + // Minimum execution time: 26_354_000 picoseconds. + Weight::from_parts(26_843_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -185,11 +185,11 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `772 + i * (76 ±0)` // Estimated: `3643 + i * (2597 ±0)` - // Minimum execution time: 13_608_000 picoseconds. - Weight::from_parts(13_837_000, 0) + // Minimum execution time: 13_457_000 picoseconds. + Weight::from_parts(13_605_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 17_539 - .saturating_add(Weight::from_parts(17_060_651, 0).saturating_mul(i.into())) + // Standard Error: 12_592 + .saturating_add(Weight::from_parts(17_022_998, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -204,8 +204,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 17_305_000 picoseconds. - Weight::from_parts(18_139_000, 0) + // Minimum execution time: 17_643_000 picoseconds. + Weight::from_parts(18_167_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -218,8 +218,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 17_243_000 picoseconds. - Weight::from_parts(17_710_000, 0) + // Minimum execution time: 17_608_000 picoseconds. + Weight::from_parts(17_901_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -230,8 +230,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 12_281_000 picoseconds. - Weight::from_parts(12_788_000, 0) + // Minimum execution time: 12_599_000 picoseconds. + Weight::from_parts(12_948_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 12_474_000 picoseconds. - Weight::from_parts(12_800_000, 0) + // Minimum execution time: 12_283_000 picoseconds. + Weight::from_parts(12_668_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -258,8 +258,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `3643` - // Minimum execution time: 20_775_000 picoseconds. - Weight::from_parts(21_427_000, 0) + // Minimum execution time: 20_789_000 picoseconds. + Weight::from_parts(21_342_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -270,8 +270,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 12_456_000 picoseconds. - Weight::from_parts(12_923_000, 0) + // Minimum execution time: 12_764_000 picoseconds. + Weight::from_parts(13_048_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -284,8 +284,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 15_818_000 picoseconds. - Weight::from_parts(16_184_000, 0) + // Minimum execution time: 15_760_000 picoseconds. + Weight::from_parts(16_338_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -300,8 +300,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `593` // Estimated: `3652` - // Minimum execution time: 37_739_000 picoseconds. - Weight::from_parts(38_905_000, 0) + // Minimum execution time: 36_996_000 picoseconds. + Weight::from_parts(37_516_000, 0) .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -316,8 +316,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `790` // Estimated: `3652` - // Minimum execution time: 36_982_000 picoseconds. - Weight::from_parts(37_478_000, 0) + // Minimum execution time: 36_482_000 picoseconds. + Weight::from_parts(37_229_000, 0) .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -330,8 +330,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `382` // Estimated: `3652` - // Minimum execution time: 28_507_000 picoseconds. - Weight::from_parts(29_287_000, 0) + // Minimum execution time: 28_710_000 picoseconds. + Weight::from_parts(29_320_000, 0) .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -344,8 +344,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `593` // Estimated: `3652` - // Minimum execution time: 29_707_000 picoseconds. - Weight::from_parts(30_511_000, 0) + // Minimum execution time: 29_481_000 picoseconds. + Weight::from_parts(30_283_000, 0) .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -358,8 +358,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 29_599_000 picoseconds. - Weight::from_parts(30_170_000, 0) + // Minimum execution time: 29_369_000 picoseconds. + Weight::from_parts(29_966_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -372,8 +372,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `507` // Estimated: `3643` - // Minimum execution time: 28_647_000 picoseconds. - Weight::from_parts(29_273_000, 0) + // Minimum execution time: 28_423_000 picoseconds. + Weight::from_parts(29_212_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -386,8 +386,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 18_131_000 picoseconds. - Weight::from_parts(18_727_000, 0) + // Minimum execution time: 18_280_000 picoseconds. + Weight::from_parts(18_659_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -400,8 +400,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `495` // Estimated: `3643` - // Minimum execution time: 18_281_000 picoseconds. - Weight::from_parts(18_870_000, 0) + // Minimum execution time: 18_511_000 picoseconds. + Weight::from_parts(18_879_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -412,8 +412,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3517` - // Minimum execution time: 13_958_000 picoseconds. - Weight::from_parts(14_572_000, 0) + // Minimum execution time: 13_887_000 picoseconds. + Weight::from_parts(14_265_000, 0) .saturating_add(Weight::from_parts(0, 3517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -426,8 +426,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 15_360_000 picoseconds. - Weight::from_parts(15_865_000, 0) + // Minimum execution time: 15_334_000 picoseconds. + Weight::from_parts(15_660_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -440,8 +440,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `293` // Estimated: `3587` - // Minimum execution time: 14_927_000 picoseconds. - Weight::from_parts(15_539_000, 0) + // Minimum execution time: 15_343_000 picoseconds. + Weight::from_parts(15_571_000, 0) .saturating_add(Weight::from_parts(0, 3587)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -458,8 +458,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `574` // Estimated: `3643` - // Minimum execution time: 34_789_000 picoseconds. - Weight::from_parts(35_601_000, 0) + // Minimum execution time: 35_290_000 picoseconds. + Weight::from_parts(35_990_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_utility.rs b/runtime/trappist/src/weights/pallet_utility.rs index cca43b20..ee84b3a7 100644 --- a/runtime/trappist/src/weights/pallet_utility.rs +++ b/runtime/trappist/src/weights/pallet_utility.rs @@ -57,11 +57,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_002_000 picoseconds. - Weight::from_parts(15_967_442, 0) + // Minimum execution time: 6_636_000 picoseconds. + Weight::from_parts(18_532_533, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_768 - .saturating_add(Weight::from_parts(6_432_981, 0).saturating_mul(c.into())) + // Standard Error: 4_603 + .saturating_add(Weight::from_parts(6_036_739, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -70,8 +70,8 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 8_901_000 picoseconds. - Weight::from_parts(9_315_000, 0) + // Minimum execution time: 8_653_000 picoseconds. + Weight::from_parts(8_982_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -82,19 +82,19 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 6_668_000 picoseconds. - Weight::from_parts(15_634_886, 0) + // Minimum execution time: 6_621_000 picoseconds. + Weight::from_parts(24_018_160, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_610 - .saturating_add(Weight::from_parts(6_784_005, 0).saturating_mul(c.into())) + // Standard Error: 4_233 + .saturating_add(Weight::from_parts(6_282_553, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_459_000 picoseconds. - Weight::from_parts(9_865_000, 0) + // Minimum execution time: 9_106_000 picoseconds. + Weight::from_parts(9_374_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -104,11 +104,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 6_760_000 picoseconds. - Weight::from_parts(23_718_323, 0) + // Minimum execution time: 6_608_000 picoseconds. + Weight::from_parts(20_540_741, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 4_034 - .saturating_add(Weight::from_parts(6_431_723, 0).saturating_mul(c.into())) + // Standard Error: 3_950 + .saturating_add(Weight::from_parts(6_037_237, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } } diff --git a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs index c500acaf..db002f68 100644 --- a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs +++ b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs @@ -66,8 +66,8 @@ impl pallet_withdraw_teleport::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 92_006_000 picoseconds. - Weight::from_parts(93_857_000, 0) + // Minimum execution time: 87_068_000 picoseconds. + Weight::from_parts(89_581_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs index 96ba0e53..88359c56 100644 --- a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs +++ b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs @@ -58,8 +58,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `131` // Estimated: `4087` - // Minimum execution time: 8_241_000 picoseconds. - Weight::from_parts(8_493_000, 0) + // Minimum execution time: 8_180_000 picoseconds. + Weight::from_parts(8_285_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -69,8 +69,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 4_385_000 picoseconds. - Weight::from_parts(4_565_000, 0) + // Minimum execution time: 4_203_000 picoseconds. + Weight::from_parts(4_348_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -78,8 +78,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_012_000 picoseconds. - Weight::from_parts(1_049_000, 0) + // Minimum execution time: 873_000 picoseconds. + Weight::from_parts(900_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs index f8f80fac..ead91044 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs @@ -57,8 +57,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3593` - // Minimum execution time: 27_663_000 picoseconds. - Weight::from_parts(28_186_000, 3593) + // Minimum execution time: 26_132_000 picoseconds. + Weight::from_parts(27_106_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -68,8 +68,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `6196` - // Minimum execution time: 54_431_000 picoseconds. - Weight::from_parts(55_446_000, 6196) + // Minimum execution time: 51_339_000 picoseconds. + Weight::from_parts(52_277_000, 6196) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -91,8 +91,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `278` // Estimated: `6196` - // Minimum execution time: 77_583_000 picoseconds. - Weight::from_parts(79_048_000, 6196) + // Minimum execution time: 73_834_000 picoseconds. + Weight::from_parts(74_698_000, 6196) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -121,8 +121,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 464_967_000 picoseconds. - Weight::from_parts(470_598_000, 3642) + // Minimum execution time: 415_799_000 picoseconds. + Weight::from_parts(440_359_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -132,8 +132,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 7_702_000 picoseconds. - Weight::from_parts(7_899_000, 4087) + // Minimum execution time: 7_364_000 picoseconds. + Weight::from_parts(7_677_000, 4087) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `System::Account` (r:1 w:1) @@ -142,8 +142,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 26_695_000 picoseconds. - Weight::from_parts(27_413_000, 3593) + // Minimum execution time: 24_978_000 picoseconds. + Weight::from_parts(25_788_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,8 +165,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 53_317_000 picoseconds. - Weight::from_parts(54_995_000, 3642) + // Minimum execution time: 51_432_000 picoseconds. + Weight::from_parts(52_380_000, 3642) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -188,8 +188,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `219` // Estimated: `4087` - // Minimum execution time: 35_493_000 picoseconds. - Weight::from_parts(36_502_000, 4087) + // Minimum execution time: 34_917_000 picoseconds. + Weight::from_parts(35_390_000, 4087) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs index 2ebf5965..66846f88 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs @@ -67,8 +67,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 411_972_000 picoseconds. - Weight::from_parts(416_451_000, 3642) + // Minimum execution time: 387_400_000 picoseconds. + Weight::from_parts(397_747_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,8 +76,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_968_000 picoseconds. - Weight::from_parts(4_220_000, 0) + // Minimum execution time: 3_673_000 picoseconds. + Weight::from_parts(3_900_000, 0) } /// Storage: `PolkadotXcm::Queries` (r:1 w:0) /// Proof: `PolkadotXcm::Queries` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -85,8 +85,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `69` // Estimated: `3534` - // Minimum execution time: 11_664_000 picoseconds. - Weight::from_parts(12_106_000, 3534) + // Minimum execution time: 11_311_000 picoseconds. + Weight::from_parts(11_864_000, 3534) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -95,51 +95,51 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 16_199_000 picoseconds. - Weight::from_parts(16_839_000, 1486) + // Minimum execution time: 15_558_000 picoseconds. + Weight::from_parts(16_178_000, 1486) .saturating_add(T::DbWeight::get().reads(1)) } pub(crate) fn refund_surplus() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_286_000 picoseconds. - Weight::from_parts(4_543_000, 0) + // Minimum execution time: 3_926_000 picoseconds. + Weight::from_parts(4_132_000, 0) } pub(crate) fn set_error_handler() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_822_000 picoseconds. - Weight::from_parts(2_948_000, 0) + // Minimum execution time: 2_579_000 picoseconds. + Weight::from_parts(2_673_000, 0) } pub(crate) fn set_appendix() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_790_000 picoseconds. - Weight::from_parts(2_880_000, 0) + // Minimum execution time: 2_551_000 picoseconds. + Weight::from_parts(2_812_000, 0) } pub(crate) fn clear_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_753_000 picoseconds. - Weight::from_parts(2_865_000, 0) + // Minimum execution time: 2_580_000 picoseconds. + Weight::from_parts(2_750_000, 0) } pub(crate) fn descend_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_549_000 picoseconds. - Weight::from_parts(3_655_000, 0) + // Minimum execution time: 3_276_000 picoseconds. + Weight::from_parts(3_429_000, 0) } pub(crate) fn clear_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_742_000 picoseconds. - Weight::from_parts(2_903_000, 0) + // Minimum execution time: 2_611_000 picoseconds. + Weight::from_parts(2_733_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -157,8 +157,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 26_204_000 picoseconds. - Weight::from_parts(27_044_000, 3642) + // Minimum execution time: 25_491_000 picoseconds. + Weight::from_parts(26_447_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -168,8 +168,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `126` // Estimated: `3591` - // Minimum execution time: 14_974_000 picoseconds. - Weight::from_parts(15_582_000, 3591) + // Minimum execution time: 15_051_000 picoseconds. + Weight::from_parts(15_366_000, 3591) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -177,8 +177,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_789_000 picoseconds. - Weight::from_parts(3_003_000, 0) + // Minimum execution time: 2_632_000 picoseconds. + Weight::from_parts(2_798_000, 0) } /// Storage: `PolkadotXcm::VersionNotifyTargets` (r:1 w:1) /// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -196,8 +196,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `145` // Estimated: `3610` - // Minimum execution time: 27_715_000 picoseconds. - Weight::from_parts(28_738_000, 3610) + // Minimum execution time: 27_710_000 picoseconds. + Weight::from_parts(28_361_000, 3610) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -207,44 +207,44 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_604_000 picoseconds. - Weight::from_parts(4_795_000, 0) + // Minimum execution time: 4_366_000 picoseconds. + Weight::from_parts(4_571_000, 0) .saturating_add(T::DbWeight::get().writes(1)) } pub(crate) fn burn_asset() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 136_817_000 picoseconds. - Weight::from_parts(137_389_000, 0) + // Minimum execution time: 117_082_000 picoseconds. + Weight::from_parts(123_887_000, 0) } pub(crate) fn expect_asset() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 13_100_000 picoseconds. - Weight::from_parts(13_303_000, 0) + // Minimum execution time: 12_079_000 picoseconds. + Weight::from_parts(12_440_000, 0) } pub(crate) fn expect_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_884_000 picoseconds. - Weight::from_parts(3_026_000, 0) + // Minimum execution time: 2_722_000 picoseconds. + Weight::from_parts(2_815_000, 0) } pub(crate) fn expect_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_749_000 picoseconds. - Weight::from_parts(2_883_000, 0) + // Minimum execution time: 2_619_000 picoseconds. + Weight::from_parts(2_740_000, 0) } pub(crate) fn expect_transact_status() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_023_000 picoseconds. - Weight::from_parts(3_105_000, 0) + // Minimum execution time: 2_845_000 picoseconds. + Weight::from_parts(3_087_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -262,8 +262,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 31_811_000 picoseconds. - Weight::from_parts(32_298_000, 3642) + // Minimum execution time: 31_097_000 picoseconds. + Weight::from_parts(31_895_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -271,8 +271,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_791_000 picoseconds. - Weight::from_parts(6_926_000, 0) + // Minimum execution time: 6_442_000 picoseconds. + Weight::from_parts(6_713_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -290,8 +290,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 26_373_000 picoseconds. - Weight::from_parts(27_179_000, 3642) + // Minimum execution time: 26_108_000 picoseconds. + Weight::from_parts(26_828_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -299,35 +299,35 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_782_000 picoseconds. - Weight::from_parts(2_912_000, 0) + // Minimum execution time: 2_598_000 picoseconds. + Weight::from_parts(2_727_000, 0) } pub(crate) fn set_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_738_000 picoseconds. - Weight::from_parts(2_901_000, 0) + // Minimum execution time: 2_543_000 picoseconds. + Weight::from_parts(2_728_000, 0) } pub(crate) fn clear_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_719_000 picoseconds. - Weight::from_parts(2_877_000, 0) + // Minimum execution time: 2_540_000 picoseconds. + Weight::from_parts(2_688_000, 0) } pub(crate) fn set_fees_mode() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_737_000 picoseconds. - Weight::from_parts(2_895_000, 0) + // Minimum execution time: 2_574_000 picoseconds. + Weight::from_parts(2_790_000, 0) } pub(crate) fn unpaid_execution() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_844_000 picoseconds. - Weight::from_parts(3_001_000, 0) + // Minimum execution time: 2_710_000 picoseconds. + Weight::from_parts(2_821_000, 0) } }