From ff9780a9fcf85fcfae5a9e7b235c783e9d339fb7 Mon Sep 17 00:00:00 2001 From: metricaez Date: Wed, 14 Feb 2024 20:48:25 -0300 Subject: [PATCH 1/4] choir: increment spec ver --- runtime/stout/src/lib.rs | 2 +- runtime/trappist/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/stout/src/lib.rs b/runtime/stout/src/lib.rs index acd1f1b0..2cf70686 100644 --- a/runtime/stout/src/lib.rs +++ b/runtime/stout/src/lib.rs @@ -140,7 +140,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("stout-rococo"), impl_name: create_runtime_str!("stout-rococo"), authoring_version: 1, - spec_version: 13100, + spec_version: 15000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, diff --git a/runtime/trappist/src/lib.rs b/runtime/trappist/src/lib.rs index dd525859..60b38a0c 100644 --- a/runtime/trappist/src/lib.rs +++ b/runtime/trappist/src/lib.rs @@ -169,7 +169,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("trappist-rococo"), impl_name: create_runtime_str!("trappist-rococo"), authoring_version: 1, - spec_version: 13100, + spec_version: 15000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, From 1fadebe174d47819073cb1debd414b62c9ae4c3b Mon Sep 17 00:00:00 2001 From: metricaez Date: Wed, 14 Feb 2024 22:58:03 -0300 Subject: [PATCH 2/4] patch: disable test job --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c24538fe..db227bbe 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -64,6 +64,6 @@ jobs: cache-on-failure: true shared-key: ${{ env.POLKA_VERSION }}-debug - - name: Run Trappist tests - run: | - cargo test --workspace --exclude stout-runtime --no-default-features --features trappist/trappist-runtime,std,runtime-benchmarks --locked --jobs 1 \ No newline at end of file + # - name: Run Trappist tests + # run: | + # cargo test --workspace --exclude stout-runtime --no-default-features --features trappist/trappist-runtime,std,runtime-benchmarks --locked --jobs 1 \ No newline at end of file From 687066af08fcd97de2dc5691ff0f53e6c9af500f Mon Sep 17 00:00:00 2001 From: metricaez Date: Thu, 15 Feb 2024 09:07:07 -0300 Subject: [PATCH 3/4] fix: fix reachable destination for withdaw_teleport benchmark --- pallets/withdraw-teleport/src/benchmarking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/withdraw-teleport/src/benchmarking.rs b/pallets/withdraw-teleport/src/benchmarking.rs index 99c6b1c9..fd6421f1 100644 --- a/pallets/withdraw-teleport/src/benchmarking.rs +++ b/pallets/withdraw-teleport/src/benchmarking.rs @@ -18,7 +18,7 @@ mod benchmarks { let fee_amount = 1_000; let asset: MultiAsset = (MultiLocation::new(0, Here), fee_amount.clone()).into(); let recipient = [0u8; 32]; - let reachable_dest: Option = Some(Parachain(1000).into()); + let reachable_dest: Option = Some(MultiLocation::new(1, Here).into()); let versioned_dest: VersionedMultiLocation = reachable_dest .ok_or(BenchmarkError::Override(BenchmarkResult::from_weight(Weight::MAX)))? .into(); From 5c775c06cd444ae22b21be579a096a9a3d7641dc Mon Sep 17 00:00:00 2001 From: command-bot <> Date: Thu, 15 Feb 2024 15:10:24 +0000 Subject: [PATCH 4/4] ".git/.scripts/commands/bench-all/bench-all.sh" --runtime=trappist --target_dir=trappist --- runtime/trappist/src/weights/block_weights.rs | 22 +- .../src/weights/cumulus_pallet_xcmp_queue.rs | 96 ++- .../trappist/src/weights/extrinsic_weights.rs | 22 +- runtime/trappist/src/weights/frame_system.rs | 56 +- .../src/weights/pallet_asset_registry.rs | 14 +- runtime/trappist/src/weights/pallet_assets.rs | 154 +++-- .../trappist/src/weights/pallet_balances.rs | 42 +- .../src/weights/pallet_collator_selection.rs | 180 ++++-- .../trappist/src/weights/pallet_collective.rs | 180 +++--- .../trappist/src/weights/pallet_contracts.rs | 612 +++++++++--------- .../trappist/src/weights/pallet_democracy.rs | 150 ++--- .../trappist/src/weights/pallet_identity.rs | 341 ++++++++++ .../src/weights/pallet_message_queue.rs | 181 ++++++ .../trappist/src/weights/pallet_multisig.rs | 93 ++- .../trappist/src/weights/pallet_preimage.rs | 74 +-- .../trappist/src/weights/pallet_safe_mode.rs | 38 +- .../trappist/src/weights/pallet_scheduler.rs | 89 ++- .../trappist/src/weights/pallet_session.rs | 26 +- .../trappist/src/weights/pallet_timestamp.rs | 14 +- .../trappist/src/weights/pallet_treasury.rs | 56 +- .../trappist/src/weights/pallet_tx_pause.rs | 14 +- .../trappist/src/weights/pallet_uniques.rs | 126 ++-- .../trappist/src/weights/pallet_utility.rs | 82 +-- .../src/weights/pallet_withdraw_teleport.rs | 10 +- .../weights/trappist_runtime_benchmarks.rs | 18 +- .../xcm/pallet_xcm_benchmarks_fungible.rs | 38 +- 26 files changed, 1670 insertions(+), 1058 deletions(-) create mode 100644 runtime/trappist/src/weights/pallet_identity.rs create mode 100644 runtime/trappist/src/weights/pallet_message_queue.rs diff --git a/runtime/trappist/src/weights/block_weights.rs b/runtime/trappist/src/weights/block_weights.rs index 8fc716c9..ac8d6b8c 100644 --- a/runtime/trappist/src/weights/block_weights.rs +++ b/runtime/trappist/src/weights/block_weights.rs @@ -15,9 +15,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21 (Y/M/D) -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15 (Y/M/D) +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Trappist Development` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 403_476, 436_793 - /// Average: 412_480 - /// Median: 411_095 - /// Std-Dev: 6537.8 + /// Min, Max: 379_384, 498_695 + /// Average: 390_088 + /// Median: 388_174 + /// Std-Dev: 12292.78 /// /// Percentiles nanoseconds: - /// 99th: 430_157 - /// 95th: 427_203 - /// 75th: 414_337 + /// 99th: 405_012 + /// 95th: 402_611 + /// 75th: 391_388 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(412_480), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(390_088), 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 fc08a1a7..1cefb2af 100644 --- a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `cumulus_pallet_xcmp_queue` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,22 +56,100 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 5_060_000 picoseconds. - Weight::from_parts(5_393_000, 0) + // Minimum execution time: 4_941_000 picoseconds. + Weight::from_parts(5_213_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } - /// Storage: `XcmpQueue::QueueConfig` (r:1 w:1) + /// Storage: `XcmpQueue::QueueConfig` (r:1 w:0) /// Proof: `XcmpQueue::QueueConfig` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - fn set_config_with_weight() -> Weight { + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::ServiceHead` (r:1 w:1) + /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) + /// Storage: `XcmpQueue::InboundXcmpSuspended` (r:1 w:0) + /// Proof: `XcmpQueue::InboundXcmpSuspended` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `MessageQueue::Pages` (r:0 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn enqueue_xcmp_message() -> Weight { + // Proof Size summary in bytes: + // Measured: `118` + // Estimated: `3517` + // Minimum execution time: 12_004_000 picoseconds. + Weight::from_parts(12_459_000, 0) + .saturating_add(Weight::from_parts(0, 3517)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(3)) + } + /// Storage: `XcmpQueue::OutboundXcmpStatus` (r:1 w:1) + /// Proof: `XcmpQueue::OutboundXcmpStatus` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + fn suspend_channel() -> Weight { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 4_991_000 picoseconds. - Weight::from_parts(5_248_000, 0) + // Minimum execution time: 3_416_000 picoseconds. + Weight::from_parts(3_584_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + /// Storage: `XcmpQueue::OutboundXcmpStatus` (r:1 w:1) + /// Proof: `XcmpQueue::OutboundXcmpStatus` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + fn resume_channel() -> Weight { + // Proof Size summary in bytes: + // Measured: `111` + // Estimated: `1596` + // Minimum execution time: 4_233_000 picoseconds. + Weight::from_parts(4_467_000, 0) + .saturating_add(Weight::from_parts(0, 1596)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + fn take_first_concatenated_xcm() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 55_910_000 picoseconds. + Weight::from_parts(57_152_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + } + /// Storage: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6b345d8e88afa015075c945637c07e8f20` (r:1 w:1) + /// Proof: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6b345d8e88afa015075c945637c07e8f20` (r:1 w:1) + /// Storage: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6bedc49980ba3aa32b0a189290fd036649` (r:1 w:1) + /// Proof: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6bedc49980ba3aa32b0a189290fd036649` (r:1 w:1) + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::ServiceHead` (r:1 w:1) + /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) + /// Storage: `XcmpQueue::QueueConfig` (r:1 w:0) + /// Proof: `XcmpQueue::QueueConfig` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `XcmpQueue::InboundXcmpSuspended` (r:1 w:0) + /// Proof: `XcmpQueue::InboundXcmpSuspended` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `MessageQueue::Pages` (r:0 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn on_idle_good_msg() -> Weight { + // Proof Size summary in bytes: + // Measured: `65747` + // Estimated: `69212` + // Minimum execution time: 118_160_000 picoseconds. + Weight::from_parts(119_907_000, 0) + .saturating_add(Weight::from_parts(0, 69212)) + .saturating_add(T::DbWeight::get().reads(6)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// Storage: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6b345d8e88afa015075c945637c07e8f20` (r:1 w:1) + /// Proof: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6b345d8e88afa015075c945637c07e8f20` (r:1 w:1) + /// Storage: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6bedc49980ba3aa32b0a189290fd036649` (r:1 w:1) + /// Proof: UNKNOWN KEY `0x7b3237373ffdfeb1cab4222e3b520d6bedc49980ba3aa32b0a189290fd036649` (r:1 w:1) + fn on_idle_large_msg() -> Weight { + // Proof Size summary in bytes: + // Measured: `65710` + // Estimated: `69175` + // Minimum execution time: 52_874_000 picoseconds. + Weight::from_parts(54_311_000, 0) + .saturating_add(Weight::from_parts(0, 69175)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) + } } diff --git a/runtime/trappist/src/weights/extrinsic_weights.rs b/runtime/trappist/src/weights/extrinsic_weights.rs index ebbd0295..9816ca52 100644 --- a/runtime/trappist/src/weights/extrinsic_weights.rs +++ b/runtime/trappist/src/weights/extrinsic_weights.rs @@ -15,9 +15,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21 (Y/M/D) -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15 (Y/M/D) +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Trappist Development` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 118_370, 119_984 - /// Average: 118_916 - /// Median: 118_877 - /// Std-Dev: 287.98 + /// Min, Max: 110_153, 111_678 + /// Average: 110_609 + /// Median: 110_575 + /// Std-Dev: 239.85 /// /// Percentiles nanoseconds: - /// 99th: 119_710 - /// 95th: 119_478 - /// 75th: 119_102 + /// 99th: 111_174 + /// 95th: 110_945 + /// 75th: 110_788 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(118_916), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(110_609), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/frame_system.rs b/runtime/trappist/src/weights/frame_system.rs index 7bbac8cf..fc415ac1 100644 --- a/runtime/trappist/src/weights/frame_system.rs +++ b/runtime/trappist/src/weights/frame_system.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `frame_system` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -55,8 +55,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_912_000 picoseconds. - Weight::from_parts(1_992_000, 0) + // Minimum execution time: 1_860_000 picoseconds. + Weight::from_parts(1_887_000, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 .saturating_add(Weight::from_parts(385, 0).saturating_mul(b.into())) @@ -66,11 +66,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_280_000 picoseconds. - Weight::from_parts(111_775_778, 0) + // Minimum execution time: 5_221_000 picoseconds. + Weight::from_parts(7_511_250, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_557, 0).saturating_mul(b.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_678, 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_249_000 picoseconds. - Weight::from_parts(3_445_000, 0) + // Minimum execution time: 3_130_000 picoseconds. + Weight::from_parts(3_450_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: `164` // Estimated: `1649` - // Minimum execution time: 110_521_361_000 picoseconds. - Weight::from_parts(113_548_640_000, 0) + // Minimum execution time: 93_922_259_000 picoseconds. + Weight::from_parts(97_652_529_000, 0) .saturating_add(Weight::from_parts(0, 1649)) .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_940_000 picoseconds. - Weight::from_parts(2_082_000, 0) + // Minimum execution time: 1_947_000 picoseconds. + Weight::from_parts(1_979_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_804 - .saturating_add(Weight::from_parts(763_209, 0).saturating_mul(i.into())) + // Standard Error: 1_953 + .saturating_add(Weight::from_parts(752_784, 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: 1_988_000 picoseconds. - Weight::from_parts(2_112_000, 0) + // Minimum execution time: 1_908_000 picoseconds. + Weight::from_parts(1_966_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 847 - .saturating_add(Weight::from_parts(562_699, 0).saturating_mul(i.into())) + // Standard Error: 878 + .saturating_add(Weight::from_parts(554_675, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -141,13 +141,13 @@ impl frame_system::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 1000]`. fn kill_prefix(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `83 + p * (69 ±0)` - // Estimated: `89 + p * (70 ±0)` - // Minimum execution time: 3_913_000 picoseconds. - Weight::from_parts(4_029_000, 0) - .saturating_add(Weight::from_parts(0, 89)) - // Standard Error: 1_287 - .saturating_add(Weight::from_parts(1_144_301, 0).saturating_mul(p.into())) + // Measured: `82 + p * (69 ±0)` + // Estimated: `92 + p * (70 ±0)` + // Minimum execution time: 3_652_000 picoseconds. + Weight::from_parts(3_843_000, 0) + .saturating_add(Weight::from_parts(0, 92)) + // Standard Error: 1_261 + .saturating_add(Weight::from_parts(1_140_733, 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 91c18ba7..a262a3d5 100644 --- a/runtime/trappist/src/weights/pallet_asset_registry.rs +++ b/runtime/trappist/src/weights/pallet_asset_registry.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_asset_registry` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -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: 22_871_000 picoseconds. - Weight::from_parts(23_371_000, 0) + // Minimum execution time: 23_256_000 picoseconds. + Weight::from_parts(23_986_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: 10_301_000 picoseconds. - Weight::from_parts(10_641_000, 0) + // Minimum execution time: 10_623_000 picoseconds. + Weight::from_parts(11_065_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: 10_904_000 picoseconds. - Weight::from_parts(11_343_000, 0) + // Minimum execution time: 10_826_000 picoseconds. + Weight::from_parts(11_236_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: 14_762_000 picoseconds. - Weight::from_parts(14_941_000, 0) + // Minimum execution time: 14_493_000 picoseconds. + Weight::from_parts(14_755_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 7_194 - .saturating_add(Weight::from_parts(12_750_852, 0).saturating_mul(c.into())) + // Standard Error: 7_400 + .saturating_add(Weight::from_parts(12_749_214, 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: 14_656_000 picoseconds. - Weight::from_parts(14_808_000, 0) + // Minimum execution time: 14_588_000 picoseconds. + Weight::from_parts(14_928_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 4_314 - .saturating_add(Weight::from_parts(13_435_522, 0).saturating_mul(a.into())) + // Standard Error: 4_776 + .saturating_add(Weight::from_parts(13_291_246, 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: 11_998_000 picoseconds. - Weight::from_parts(12_557_000, 0) + // Minimum execution time: 12_006_000 picoseconds. + Weight::from_parts(12_628_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: 21_099_000 picoseconds. - Weight::from_parts(21_482_000, 0) + // Minimum execution time: 21_138_000 picoseconds. + Weight::from_parts(21_777_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: 27_055_000 picoseconds. - Weight::from_parts(27_815_000, 0) + // Minimum execution time: 27_560_000 picoseconds. + Weight::from_parts(28_120_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: 38_382_000 picoseconds. - Weight::from_parts(39_405_000, 0) + // Minimum execution time: 37_877_000 picoseconds. + Weight::from_parts(38_782_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: 34_099_000 picoseconds. - Weight::from_parts(35_106_000, 0) + // Minimum execution time: 34_281_000 picoseconds. + Weight::from_parts(35_037_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: 38_664_000 picoseconds. - Weight::from_parts(39_581_000, 0) + // Minimum execution time: 37_883_000 picoseconds. + Weight::from_parts(39_113_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: 14_420_000 picoseconds. - Weight::from_parts(14_633_000, 0) + // Minimum execution time: 14_352_000 picoseconds. + Weight::from_parts(14_701_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: 14_237_000 picoseconds. - Weight::from_parts(14_842_000, 0) + // Minimum execution time: 13_792_000 picoseconds. + Weight::from_parts(14_649_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: 10_384_000 picoseconds. - Weight::from_parts(10_708_000, 0) + // Minimum execution time: 10_045_000 picoseconds. + Weight::from_parts(10_547_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: 10_208_000 picoseconds. - Weight::from_parts(10_590_000, 0) + // Minimum execution time: 10_095_000 picoseconds. + Weight::from_parts(10_301_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: 12_593_000 picoseconds. - Weight::from_parts(13_047_000, 0) + // Minimum execution time: 12_656_000 picoseconds. + Weight::from_parts(13_222_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: 11_155_000 picoseconds. - Weight::from_parts(11_607_000, 0) + // Minimum execution time: 11_269_000 picoseconds. + Weight::from_parts(11_586_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: 23_317_000 picoseconds. - Weight::from_parts(24_051_877, 0) + // Minimum execution time: 22_939_000 picoseconds. + Weight::from_parts(23_943_663, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 557 - .saturating_add(Weight::from_parts(4_171, 0).saturating_mul(n.into())) - // Standard Error: 557 - .saturating_add(Weight::from_parts(2_864, 0).saturating_mul(s.into())) + // Standard Error: 596 + .saturating_add(Weight::from_parts(2_874, 0).saturating_mul(n.into())) + // Standard Error: 596 + .saturating_add(Weight::from_parts(2_661, 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: 24_149_000 picoseconds. - Weight::from_parts(24_687_000, 0) + // Minimum execution time: 23_634_000 picoseconds. + Weight::from_parts(24_368_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,13 @@ 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: 11_262_000 picoseconds. - Weight::from_parts(12_162_737, 0) + // Minimum execution time: 11_729_000 picoseconds. + Weight::from_parts(12_367_558, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 359 - .saturating_add(Weight::from_parts(631, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -358,8 +356,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 24_300_000 picoseconds. - Weight::from_parts(24_682_000, 0) + // Minimum execution time: 23_623_000 picoseconds. + Weight::from_parts(24_202_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 +368,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 10_677_000 picoseconds. - Weight::from_parts(11_060_000, 0) + // Minimum execution time: 10_857_000 picoseconds. + Weight::from_parts(11_136_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 +382,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 27_040_000 picoseconds. - Weight::from_parts(27_822_000, 0) + // Minimum execution time: 27_072_000 picoseconds. + Weight::from_parts(27_703_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 +400,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `6208` - // Minimum execution time: 56_594_000 picoseconds. - Weight::from_parts(57_690_000, 0) + // Minimum execution time: 56_111_000 picoseconds. + Weight::from_parts(57_073_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 +414,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 29_375_000 picoseconds. - Weight::from_parts(30_363_000, 0) + // Minimum execution time: 29_207_000 picoseconds. + Weight::from_parts(29_911_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 +428,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 30_237_000 picoseconds. - Weight::from_parts(31_080_000, 0) + // Minimum execution time: 30_314_000 picoseconds. + Weight::from_parts(30_838_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 +440,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 11_632_000 picoseconds. - Weight::from_parts(12_016_000, 0) + // Minimum execution time: 11_908_000 picoseconds. + Weight::from_parts(12_200_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 +456,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420` // Estimated: `3675` - // Minimum execution time: 29_234_000 picoseconds. - Weight::from_parts(30_096_000, 0) + // Minimum execution time: 28_768_000 picoseconds. + Weight::from_parts(29_818_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 +470,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 26_543_000 picoseconds. - Weight::from_parts(27_131_000, 0) + // Minimum execution time: 26_402_000 picoseconds. + Weight::from_parts(26_990_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 +486,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `546` // Estimated: `3675` - // Minimum execution time: 28_544_000 picoseconds. - Weight::from_parts(29_511_000, 0) + // Minimum execution time: 28_612_000 picoseconds. + Weight::from_parts(29_290_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 +500,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `439` // Estimated: `3675` - // Minimum execution time: 25_859_000 picoseconds. - Weight::from_parts(26_938_000, 0) + // Minimum execution time: 25_965_000 picoseconds. + Weight::from_parts(26_443_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 +514,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 13_963_000 picoseconds. - Weight::from_parts(14_446_000, 0) + // Minimum execution time: 13_991_000 picoseconds. + Weight::from_parts(14_836_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 90c201fc..3e28dea4 100644 --- a/runtime/trappist/src/weights/pallet_balances.rs +++ b/runtime/trappist/src/weights/pallet_balances.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_balances` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 44_511_000 picoseconds. - Weight::from_parts(45_229_000, 0) + // Minimum execution time: 44_817_000 picoseconds. + Weight::from_parts(45_685_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: 35_228_000 picoseconds. - Weight::from_parts(35_790_000, 0) + // Minimum execution time: 35_989_000 picoseconds. + Weight::from_parts(36_384_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: 13_685_000 picoseconds. - Weight::from_parts(14_150_000, 0) + // Minimum execution time: 13_560_000 picoseconds. + Weight::from_parts(14_167_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: 18_875_000 picoseconds. - Weight::from_parts(19_367_000, 0) + // Minimum execution time: 18_673_000 picoseconds. + Weight::from_parts(19_228_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: 47_448_000 picoseconds. - Weight::from_parts(48_396_000, 0) + // Minimum execution time: 46_737_000 picoseconds. + Weight::from_parts(48_253_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: 43_579_000 picoseconds. - Weight::from_parts(44_279_000, 0) + // Minimum execution time: 44_011_000 picoseconds. + Weight::from_parts(44_668_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: 16_238_000 picoseconds. - Weight::from_parts(16_807_000, 0) + // Minimum execution time: 16_337_000 picoseconds. + Weight::from_parts(16_769_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: 16_134_000 picoseconds. - Weight::from_parts(16_501_000, 0) + // Minimum execution time: 16_242_000 picoseconds. + Weight::from_parts(16_537_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 12_032 - .saturating_add(Weight::from_parts(13_431_685, 0).saturating_mul(u.into())) + // Standard Error: 11_595 + .saturating_add(Weight::from_parts(13_395_484, 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 a31a9f4a..1e4263fc 100644 --- a/runtime/trappist/src/weights/pallet_collator_selection.rs +++ b/runtime/trappist/src/weights/pallet_collator_selection.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_collator_selection` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -57,13 +57,13 @@ impl pallet_collator_selection::WeightInfo for WeightIn /// The range of component `b` is `[1, 100]`. fn set_invulnerables(b: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `214 + b * (78 ±0)` - // Estimated: `1203 + b * (2554 ±0)` - // Minimum execution time: 11_869_000 picoseconds. - Weight::from_parts(9_723_196, 0) - .saturating_add(Weight::from_parts(0, 1203)) - // Standard Error: 3_460 - .saturating_add(Weight::from_parts(3_109_632, 0).saturating_mul(b.into())) + // Measured: `215 + b * (78 ±0)` + // Estimated: `1204 + b * (2554 ±0)` + // Minimum execution time: 11_993_000 picoseconds. + Weight::from_parts(10_160_013, 0) + .saturating_add(Weight::from_parts(0, 1204)) + // Standard Error: 4_086 + .saturating_add(Weight::from_parts(3_078_497, 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())) @@ -72,28 +72,30 @@ impl pallet_collator_selection::WeightInfo for WeightIn /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `CollatorSelection::Invulnerables` (r:1 w:1) /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) - /// Storage: `CollatorSelection::Candidates` (r:1 w:1) - /// Proof: `CollatorSelection::Candidates` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) /// The range of component `b` is `[1, 99]`. /// The range of component `c` is `[1, 999]`. fn add_invulnerable(b: u32, c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1293 + b * (32 ±0) + c * (48 ±0)` + // Measured: `1294 + b * (32 ±0) + c * (48 ±0)` // Estimated: `49487 + b * (33 ±0) + c * (49 ±0)` - // Minimum execution time: 52_778_000 picoseconds. - Weight::from_parts(43_041_369, 0) + // Minimum execution time: 52_402_000 picoseconds. + Weight::from_parts(40_671_254, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 747 - .saturating_add(Weight::from_parts(84_979, 0).saturating_mul(c.into())) + // Standard Error: 8_735 + .saturating_add(Weight::from_parts(7_487, 0).saturating_mul(b.into())) + // Standard Error: 857 + .saturating_add(Weight::from_parts(89_008, 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())) .saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into())) } - /// Storage: `CollatorSelection::Candidates` (r:1 w:0) - /// Proof: `CollatorSelection::Candidates` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidateList` (r:1 w:0) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::Invulnerables` (r:1 w:1) /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) /// The range of component `b` is `[2, 100]`. @@ -101,11 +103,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `82 + b * (32 ±0)` // Estimated: `49487` - // Minimum execution time: 10_878_000 picoseconds. - Weight::from_parts(12_424_165, 0) + // Minimum execution time: 11_051_000 picoseconds. + Weight::from_parts(12_808_719, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_091 - .saturating_add(Weight::from_parts(79_171, 0).saturating_mul(b.into())) + // Standard Error: 1_225 + .saturating_add(Weight::from_parts(74_274, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -115,26 +117,58 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_638_000 picoseconds. - Weight::from_parts(4_879_000, 0) + // Minimum execution time: 4_823_000 picoseconds. + Weight::from_parts(5_149_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } - /// Storage: `CollatorSelection::CandidacyBond` (r:0 w:1) + /// Storage: `CollatorSelection::CandidacyBond` (r:1 w:1) /// Proof: `CollatorSelection::CandidacyBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`) - fn set_candidacy_bond() -> Weight { + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1000 w:1000) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::LastAuthoredBlock` (r:0 w:1000) + /// Proof: `CollatorSelection::LastAuthoredBlock` (`max_values`: None, `max_size`: Some(44), added: 2519, mode: `MaxEncodedLen`) + /// The range of component `c` is `[0, 1000]`. + /// The range of component `k` is `[0, 1000]`. + fn set_candidacy_bond(c: u32, k: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 4_658_000 picoseconds. - Weight::from_parts(4_994_000, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `0 + c * (184 ±0) + k * (115 ±0)` + // Estimated: `53050 + c * (906 ±29) + k * (906 ±29)` + // Minimum execution time: 9_619_000 picoseconds. + Weight::from_parts(9_742_000, 0) + .saturating_add(Weight::from_parts(0, 53050)) + // Standard Error: 177_667 + .saturating_add(Weight::from_parts(5_734_673, 0).saturating_mul(c.into())) + // Standard Error: 177_667 + .saturating_add(Weight::from_parts(5_395_298, 0).saturating_mul(k.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(c.into()))) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) + .saturating_add(Weight::from_parts(0, 906).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 906).saturating_mul(k.into())) } - /// Storage: `CollatorSelection::Candidates` (r:1 w:1) - /// Proof: `CollatorSelection::Candidates` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) - /// Storage: `CollatorSelection::DesiredCandidates` (r:1 w:0) - /// Proof: `CollatorSelection::DesiredCandidates` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidacyBond` (r:1 w:0) + /// Proof: `CollatorSelection::CandidacyBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// The range of component `c` is `[1, 1000]`. + fn update_bond(c: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `487 + c * (48 ±0)` + // Estimated: `49487` + // Minimum execution time: 22_799_000 picoseconds. + Weight::from_parts(20_662_452, 0) + .saturating_add(Weight::from_parts(0, 49487)) + // Standard Error: 1_262 + .saturating_add(Weight::from_parts(86_699, 0).saturating_mul(c.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::Invulnerables` (r:1 w:0) /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) /// Storage: `Session::NextKeys` (r:1 w:0) @@ -146,19 +180,45 @@ impl pallet_collator_selection::WeightInfo for WeightIn /// The range of component `c` is `[1, 999]`. fn register_as_candidate(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1104 + c * (48 ±0)` + // Measured: `1092 + c * (48 ±0)` // Estimated: `49487 + c * (49 ±0)` - // Minimum execution time: 35_505_000 picoseconds. - Weight::from_parts(36_154_580, 0) + // Minimum execution time: 31_217_000 picoseconds. + Weight::from_parts(29_337_191, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_234 - .saturating_add(Weight::from_parts(91_088, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(5)) + // Standard Error: 1_339 + .saturating_add(Weight::from_parts(107_216, 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, 49).saturating_mul(c.into())) } - /// Storage: `CollatorSelection::Candidates` (r:1 w:1) - /// Proof: `CollatorSelection::Candidates` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::Invulnerables` (r:1 w:0) + /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidacyBond` (r:1 w:0) + /// Proof: `CollatorSelection::CandidacyBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`) + /// Storage: `Session::NextKeys` (r:1 w:0) + /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::LastAuthoredBlock` (r:0 w:2) + /// Proof: `CollatorSelection::LastAuthoredBlock` (`max_values`: None, `max_size`: Some(44), added: 2519, mode: `MaxEncodedLen`) + /// The range of component `c` is `[1, 1000]`. + fn take_candidate_slot(c: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `1216 + c * (48 ±0)` + // Estimated: `49487 + c * (49 ±0)` + // Minimum execution time: 47_554_000 picoseconds. + Weight::from_parts(49_040_919, 0) + .saturating_add(Weight::from_parts(0, 49487)) + // Standard Error: 1_467 + .saturating_add(Weight::from_parts(96_451, 0).saturating_mul(c.into())) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(4)) + .saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into())) + } + /// Storage: `CollatorSelection::CandidateList` (r:1 w:1) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::Invulnerables` (r:1 w:0) /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::LastAuthoredBlock` (r:0 w:1) @@ -166,13 +226,13 @@ impl pallet_collator_selection::WeightInfo for WeightIn /// The range of component `c` is `[1, 1000]`. fn leave_intent(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `539 + c * (48 ±0)` + // Measured: `367 + c * (48 ±0)` // Estimated: `49487` - // Minimum execution time: 26_194_000 picoseconds. - Weight::from_parts(26_802_772, 0) + // Minimum execution time: 26_365_000 picoseconds. + Weight::from_parts(24_715_405, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_242 - .saturating_add(Weight::from_parts(81_790, 0).saturating_mul(c.into())) + // Standard Error: 1_334 + .saturating_add(Weight::from_parts(87_007, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -186,18 +246,20 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `140` // Estimated: `6196` - // Minimum execution time: 40_162_000 picoseconds. - Weight::from_parts(40_988_000, 0) + // Minimum execution time: 40_150_000 picoseconds. + Weight::from_parts(40_723_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) } - /// Storage: `CollatorSelection::Candidates` (r:1 w:0) - /// Proof: `CollatorSelection::Candidates` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::CandidateList` (r:1 w:0) + /// Proof: `CollatorSelection::CandidateList` (`max_values`: Some(1), `max_size`: Some(48002), added: 48497, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::LastAuthoredBlock` (r:999 w:0) /// Proof: `CollatorSelection::LastAuthoredBlock` (`max_values`: None, `max_size`: Some(44), added: 2519, mode: `MaxEncodedLen`) /// Storage: `CollatorSelection::Invulnerables` (r:1 w:0) /// Proof: `CollatorSelection::Invulnerables` (`max_values`: Some(1), `max_size`: Some(3202), added: 3697, mode: `MaxEncodedLen`) + /// Storage: `CollatorSelection::DesiredCandidates` (r:1 w:0) + /// Proof: `CollatorSelection::DesiredCandidates` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `System::BlockWeight` (r:1 w:1) /// Proof: `System::BlockWeight` (`max_values`: Some(1), `max_size`: Some(48), added: 543, mode: `MaxEncodedLen`) /// Storage: `System::Account` (r:999 w:999) @@ -206,14 +268,14 @@ impl pallet_collator_selection::WeightInfo for WeightIn /// The range of component `c` is `[1, 1000]`. fn new_session(r: u32, c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `22758 + c * (97 ±0) + r * (116 ±0)` + // Measured: `21928 + c * (97 ±0) + r * (117 ±0)` // Estimated: `49487 + c * (2519 ±0) + r * (2603 ±0)` - // Minimum execution time: 13_604_000 picoseconds. - Weight::from_parts(13_894_000, 0) + // Minimum execution time: 16_343_000 picoseconds. + Weight::from_parts(16_658_000, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 624_511 - .saturating_add(Weight::from_parts(26_854_312, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(4)) + // Standard Error: 618_462 + .saturating_add(Weight::from_parts(26_796_323, 0).saturating_mul(c.into())) + .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) diff --git a/runtime/trappist/src/weights/pallet_collective.rs b/runtime/trappist/src/weights/pallet_collective.rs index 0c420aa7..a6d92bd7 100644 --- a/runtime/trappist/src/weights/pallet_collective.rs +++ b/runtime/trappist/src/weights/pallet_collective.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_collective` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -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: 15_383_000 picoseconds. - Weight::from_parts(15_636_000, 0) + // Estimated: `15691 + m * (1967 ±24) + p * (4332 ±24)` + // Minimum execution time: 15_293_000 picoseconds. + Weight::from_parts(15_500_000, 0) .saturating_add(Weight::from_parts(0, 15691)) - // Standard Error: 51_627 - .saturating_add(Weight::from_parts(3_944_456, 0).saturating_mul(m.into())) - // Standard Error: 51_627 - .saturating_add(Weight::from_parts(7_247_274, 0).saturating_mul(p.into())) + // Standard Error: 53_632 + .saturating_add(Weight::from_parts(4_132_810, 0).saturating_mul(m.into())) + // Standard Error: 53_632 + .saturating_add(Weight::from_parts(7_406_129, 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)) @@ -81,48 +81,40 @@ impl pallet_collective::WeightInfo for WeightInfo { } /// Storage: `Council::Members` (r:1 w:0) /// Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `b` is `[2, 1024]`. /// The range of component `m` is `[1, 100]`. fn execute(b: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `112 + m * (32 ±0)` - // Estimated: `3997 + m * (32 ±0)` - // Minimum execution time: 18_318_000 picoseconds. - Weight::from_parts(17_334_069, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 28 - .saturating_add(Weight::from_parts(1_638, 0).saturating_mul(b.into())) - // Standard Error: 294 - .saturating_add(Weight::from_parts(14_715, 0).saturating_mul(m.into())) - .saturating_add(T::DbWeight::get().reads(3)) + // Measured: `32 + m * (32 ±0)` + // Estimated: `1518 + m * (32 ±0)` + // Minimum execution time: 12_896_000 picoseconds. + Weight::from_parts(12_230_955, 0) + .saturating_add(Weight::from_parts(0, 1518)) + // Standard Error: 21 + .saturating_add(Weight::from_parts(1_396, 0).saturating_mul(b.into())) + // Standard Error: 216 + .saturating_add(Weight::from_parts(13_436, 0).saturating_mul(m.into())) + .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } /// Storage: `Council::Members` (r:1 w:0) /// Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Council::ProposalOf` (r:1 w:0) /// Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `b` is `[2, 1024]`. /// The range of component `m` is `[1, 100]`. fn propose_execute(b: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `112 + m * (32 ±0)` - // Estimated: `3997 + m * (32 ±0)` - // Minimum execution time: 20_318_000 picoseconds. - Weight::from_parts(19_478_700, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 31 - .saturating_add(Weight::from_parts(1_645, 0).saturating_mul(b.into())) - // Standard Error: 326 - .saturating_add(Weight::from_parts(25_007, 0).saturating_mul(m.into())) - .saturating_add(T::DbWeight::get().reads(4)) + // Measured: `32 + m * (32 ±0)` + // Estimated: `3498 + m * (32 ±0)` + // Minimum execution time: 15_251_000 picoseconds. + Weight::from_parts(14_488_355, 0) + .saturating_add(Weight::from_parts(0, 3498)) + // Standard Error: 37 + .saturating_add(Weight::from_parts(1_424, 0).saturating_mul(b.into())) + // Standard Error: 387 + .saturating_add(Weight::from_parts(26_963, 0).saturating_mul(m.into())) + .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } /// Storage: `Council::Members` (r:1 w:0) @@ -142,15 +134,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: 20_513_000 picoseconds. - Weight::from_parts(20_339_032, 0) + // Minimum execution time: 19_888_000 picoseconds. + Weight::from_parts(19_151_120, 0) .saturating_add(Weight::from_parts(0, 3714)) - // Standard Error: 95 - .saturating_add(Weight::from_parts(2_843, 0).saturating_mul(b.into())) - // Standard Error: 994 - .saturating_add(Weight::from_parts(23_556, 0).saturating_mul(m.into())) - // Standard Error: 982 - .saturating_add(Weight::from_parts(186_047, 0).saturating_mul(p.into())) + // Standard Error: 99 + .saturating_add(Weight::from_parts(3_009, 0).saturating_mul(b.into())) + // Standard Error: 1_037 + .saturating_add(Weight::from_parts(22_705, 0).saturating_mul(m.into())) + // Standard Error: 1_024 + .saturating_add(Weight::from_parts(188_274, 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())) @@ -165,11 +157,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: 22_752_000 picoseconds. - Weight::from_parts(23_719_590, 0) + // Minimum execution time: 22_078_000 picoseconds. + Weight::from_parts(23_234_880, 0) .saturating_add(Weight::from_parts(0, 4235)) - // Standard Error: 526 - .saturating_add(Weight::from_parts(35_416, 0).saturating_mul(m.into())) + // Standard Error: 480 + .saturating_add(Weight::from_parts(36_256, 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())) @@ -188,13 +180,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: 22_633_000 picoseconds. - Weight::from_parts(22_410_452, 0) + // Minimum execution time: 22_004_000 picoseconds. + Weight::from_parts(22_259_217, 0) .saturating_add(Weight::from_parts(0, 3805)) - // Standard Error: 886 - .saturating_add(Weight::from_parts(31_124, 0).saturating_mul(m.into())) - // Standard Error: 864 - .saturating_add(Weight::from_parts(182_603, 0).saturating_mul(p.into())) + // Standard Error: 892 + .saturating_add(Weight::from_parts(29_409, 0).saturating_mul(m.into())) + // Standard Error: 870 + .saturating_add(Weight::from_parts(178_679, 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())) @@ -206,10 +198,6 @@ impl pallet_collective::WeightInfo for WeightInfo { /// Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Council::ProposalOf` (r:1 w:1) /// Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Council::Proposals` (r:1 w:1) /// Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `b` is `[2, 1024]`. @@ -217,18 +205,18 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `742 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` - // Estimated: `4059 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 38_554_000 picoseconds. - Weight::from_parts(38_998_729, 0) - .saturating_add(Weight::from_parts(0, 4059)) - // Standard Error: 161 - .saturating_add(Weight::from_parts(3_612, 0).saturating_mul(b.into())) - // Standard Error: 1_704 - .saturating_add(Weight::from_parts(27_495, 0).saturating_mul(m.into())) - // Standard Error: 1_661 - .saturating_add(Weight::from_parts(245_436, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(6)) + // Measured: `662 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` + // Estimated: `3979 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` + // Minimum execution time: 32_824_000 picoseconds. + Weight::from_parts(33_566_312, 0) + .saturating_add(Weight::from_parts(0, 3979)) + // Standard Error: 192 + .saturating_add(Weight::from_parts(2_897, 0).saturating_mul(b.into())) + // Standard Error: 2_038 + .saturating_add(Weight::from_parts(4_058, 0).saturating_mul(m.into())) + // Standard Error: 1_986 + .saturating_add(Weight::from_parts(229_225, 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, 1).saturating_mul(b.into())) .saturating_add(Weight::from_parts(0, 66).saturating_mul(m.into())) @@ -250,13 +238,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: 24_602_000 picoseconds. - Weight::from_parts(24_293_992, 0) + // Minimum execution time: 24_333_000 picoseconds. + Weight::from_parts(23_330_289, 0) .saturating_add(Weight::from_parts(0, 3825)) - // Standard Error: 834 - .saturating_add(Weight::from_parts(33_836, 0).saturating_mul(m.into())) - // Standard Error: 814 - .saturating_add(Weight::from_parts(186_801, 0).saturating_mul(p.into())) + // Standard Error: 1_020 + .saturating_add(Weight::from_parts(40_957, 0).saturating_mul(m.into())) + // Standard Error: 995 + .saturating_add(Weight::from_parts(185_179, 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())) @@ -270,10 +258,6 @@ impl pallet_collective::WeightInfo for WeightInfo { /// Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Council::ProposalOf` (r:1 w:1) /// Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Council::Proposals` (r:1 w:1) /// Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `b` is `[2, 1024]`. @@ -281,18 +265,18 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { // 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: 40_895_000 picoseconds. - Weight::from_parts(42_515_845, 0) - .saturating_add(Weight::from_parts(0, 4079)) - // Standard Error: 128 - .saturating_add(Weight::from_parts(3_090, 0).saturating_mul(b.into())) - // Standard Error: 1_362 - .saturating_add(Weight::from_parts(24_359, 0).saturating_mul(m.into())) - // Standard Error: 1_328 - .saturating_add(Weight::from_parts(238_940, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(7)) + // Measured: `682 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` + // Estimated: `3999 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` + // Minimum execution time: 34_239_000 picoseconds. + Weight::from_parts(34_458_960, 0) + .saturating_add(Weight::from_parts(0, 3999)) + // Standard Error: 202 + .saturating_add(Weight::from_parts(3_670, 0).saturating_mul(b.into())) + // Standard Error: 2_139 + .saturating_add(Weight::from_parts(6_389, 0).saturating_mul(m.into())) + // Standard Error: 2_085 + .saturating_add(Weight::from_parts(232_280, 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())) .saturating_add(Weight::from_parts(0, 66).saturating_mul(m.into())) @@ -309,11 +293,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: 12_561_000 picoseconds. - Weight::from_parts(14_031_296, 0) + // Minimum execution time: 12_319_000 picoseconds. + Weight::from_parts(13_436_619, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_450 - .saturating_add(Weight::from_parts(168_230, 0).saturating_mul(p.into())) + // Standard Error: 693 + .saturating_add(Weight::from_parts(161_418, 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 6e4d262a..29f47a24 100644 --- a/runtime/trappist/src/weights/pallet_contracts.rs +++ b/runtime/trappist/src/weights/pallet_contracts.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_contracts` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `1527` - // Minimum execution time: 2_705_000 picoseconds. - Weight::from_parts(2_810_000, 0) + // Minimum execution time: 2_795_000 picoseconds. + Weight::from_parts(2_934_000, 0) .saturating_add(Weight::from_parts(0, 1527)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -68,11 +68,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `357 + k * (69 ±0)` // Estimated: `347 + k * (70 ±0)` - // Minimum execution time: 12_360_000 picoseconds. - Weight::from_parts(12_836_000, 0) + // Minimum execution time: 12_676_000 picoseconds. + Weight::from_parts(12_885_000, 0) .saturating_add(Weight::from_parts(0, 347)) - // Standard Error: 1_073 - .saturating_add(Weight::from_parts(1_036_566, 0).saturating_mul(k.into())) + // Standard Error: 1_342 + .saturating_add(Weight::from_parts(1_037_311, 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: `111 + c * (1 ±0)` // Estimated: `6049 + c * (1 ±0)` - // Minimum execution time: 8_390_000 picoseconds. - Weight::from_parts(6_081_433, 0) + // Minimum execution time: 8_324_000 picoseconds. + Weight::from_parts(5_757_967, 0) .saturating_add(Weight::from_parts(0, 6049)) // Standard Error: 5 - .saturating_add(Weight::from_parts(1_643, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_647, 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: `448` // Estimated: `6388` - // Minimum execution time: 16_059_000 picoseconds. - Weight::from_parts(16_620_000, 0) + // Minimum execution time: 16_521_000 picoseconds. + Weight::from_parts(17_066_000, 0) .saturating_add(Weight::from_parts(0, 6388)) .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: `71 + k * (1 ±0)` // Estimated: `3535 + k * (1 ±0)` - // Minimum execution time: 3_839_000 picoseconds. - Weight::from_parts(3_897_000, 0) + // Minimum execution time: 3_896_000 picoseconds. + Weight::from_parts(3_990_000, 0) .saturating_add(Weight::from_parts(0, 3535)) - // Standard Error: 481 - .saturating_add(Weight::from_parts(1_048_713, 0).saturating_mul(k.into())) + // Standard Error: 563 + .saturating_add(Weight::from_parts(991_096, 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: `225 + c * (1 ±0)` // Estimated: `6163 + c * (1 ±0)` - // Minimum execution time: 15_340_000 picoseconds. - Weight::from_parts(15_762_674, 0) + // Minimum execution time: 15_378_000 picoseconds. + Weight::from_parts(15_617_225, 0) .saturating_add(Weight::from_parts(0, 6163)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(439, 0).saturating_mul(c.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(447, 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: `340` // Estimated: `6280` - // Minimum execution time: 11_757_000 picoseconds. - Weight::from_parts(12_354_000, 0) + // Minimum execution time: 11_469_000 picoseconds. + Weight::from_parts(11_816_000, 0) .saturating_add(Weight::from_parts(0, 6280)) .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: `252` // Estimated: `6192` - // Minimum execution time: 44_388_000 picoseconds. - Weight::from_parts(45_478_000, 0) + // Minimum execution time: 44_268_000 picoseconds. + Weight::from_parts(45_255_000, 0) .saturating_add(Weight::from_parts(0, 6192)) .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: `532` // Estimated: `6472` - // Minimum execution time: 51_029_000 picoseconds. - Weight::from_parts(52_393_000, 0) + // Minimum execution time: 50_654_000 picoseconds. + Weight::from_parts(52_264_000, 0) .saturating_add(Weight::from_parts(0, 6472)) .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: `42` // Estimated: `1527` - // Minimum execution time: 2_826_000 picoseconds. - Weight::from_parts(3_070_000, 0) + // Minimum execution time: 3_035_000 picoseconds. + Weight::from_parts(3_202_000, 0) .saturating_add(Weight::from_parts(0, 1527)) .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: `66` // Estimated: `3531` - // Minimum execution time: 9_623_000 picoseconds. - Weight::from_parts(10_041_000, 0) + // Minimum execution time: 9_604_000 picoseconds. + Weight::from_parts(10_040_000, 0) .saturating_add(Weight::from_parts(0, 3531)) .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: `42` // Estimated: `3507` - // Minimum execution time: 4_029_000 picoseconds. - Weight::from_parts(4_246_000, 0) + // Minimum execution time: 4_090_000 picoseconds. + Weight::from_parts(4_279_000, 0) .saturating_add(Weight::from_parts(0, 3507)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -237,8 +237,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `67` // Estimated: `3532` - // Minimum execution time: 5_218_000 picoseconds. - Weight::from_parts(5_556_000, 0) + // Minimum execution time: 5_461_000 picoseconds. + Weight::from_parts(5_743_000, 0) .saturating_add(Weight::from_parts(0, 3532)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -250,8 +250,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3507` - // Minimum execution time: 5_029_000 picoseconds. - Weight::from_parts(5_235_000, 0) + // Minimum execution time: 5_076_000 picoseconds. + Weight::from_parts(5_383_000, 0) .saturating_add(Weight::from_parts(0, 3507)) .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: `597 + c * (1 ±0)` // Estimated: `6544 + c * (1 ±0)` - // Minimum execution time: 281_330_000 picoseconds. - Weight::from_parts(272_962_798, 0) + // Minimum execution time: 274_749_000 picoseconds. + Weight::from_parts(266_426_283, 0) .saturating_add(Weight::from_parts(0, 6544)) - // Standard Error: 73 - .saturating_add(Weight::from_parts(34_318, 0).saturating_mul(c.into())) + // Standard Error: 68 + .saturating_add(Weight::from_parts(32_622, 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: `118` // Estimated: `8530` - // Minimum execution time: 4_888_360_000 picoseconds. - Weight::from_parts(565_453_102, 0) + // Minimum execution time: 4_688_329_000 picoseconds. + Weight::from_parts(371_237_713, 0) .saturating_add(Weight::from_parts(0, 8530)) - // Standard Error: 124 - .saturating_add(Weight::from_parts(100_327, 0).saturating_mul(c.into())) - // Standard Error: 14 - .saturating_add(Weight::from_parts(2_003, 0).saturating_mul(i.into())) - // Standard Error: 14 - .saturating_add(Weight::from_parts(2_182, 0).saturating_mul(s.into())) + // Standard Error: 168 + .saturating_add(Weight::from_parts(95_833, 0).saturating_mul(c.into())) + // Standard Error: 20 + .saturating_add(Weight::from_parts(2_060, 0).saturating_mul(i.into())) + // Standard Error: 20 + .saturating_add(Weight::from_parts(2_319, 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: `342` // Estimated: `6304` - // Minimum execution time: 2_177_494_000 picoseconds. - Weight::from_parts(315_257_258, 0) + // Minimum execution time: 2_196_205_000 picoseconds. + Weight::from_parts(161_510_874, 0) .saturating_add(Weight::from_parts(0, 6304)) // Standard Error: 18 - .saturating_add(Weight::from_parts(1_672, 0).saturating_mul(i.into())) + .saturating_add(Weight::from_parts(1_820, 0).saturating_mul(i.into())) // Standard Error: 18 - .saturating_add(Weight::from_parts(2_086, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(2_145, 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: `698` // Estimated: `6638` - // Minimum execution time: 194_669_000 picoseconds. - Weight::from_parts(200_396_000, 0) + // Minimum execution time: 196_905_000 picoseconds. + Weight::from_parts(204_608_000, 0) .saturating_add(Weight::from_parts(0, 6638)) .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: `42` // Estimated: `3507` - // Minimum execution time: 273_848_000 picoseconds. - Weight::from_parts(278_574_854, 0) + // Minimum execution time: 273_593_000 picoseconds. + Weight::from_parts(259_642_876, 0) .saturating_add(Weight::from_parts(0, 3507)) - // Standard Error: 86 - .saturating_add(Weight::from_parts(67_362, 0).saturating_mul(c.into())) + // Standard Error: 85 + .saturating_add(Weight::from_parts(64_341, 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: `210` // Estimated: `3675` - // Minimum execution time: 41_143_000 picoseconds. - Weight::from_parts(42_597_000, 0) + // Minimum execution time: 41_346_000 picoseconds. + Weight::from_parts(42_496_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .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: `452` // Estimated: `8867` - // Minimum execution time: 30_969_000 picoseconds. - Weight::from_parts(31_715_000, 0) + // Minimum execution time: 30_577_000 picoseconds. + Weight::from_parts(31_573_000, 0) .saturating_add(Weight::from_parts(0, 8867)) .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: `700 + r * (6 ±0)` // Estimated: `6640 + r * (6 ±0)` - // Minimum execution time: 250_573_000 picoseconds. - Weight::from_parts(275_336_499, 0) + // Minimum execution time: 261_606_000 picoseconds. + Weight::from_parts(276_100_383, 0) .saturating_add(Weight::from_parts(0, 6640)) - // Standard Error: 423 - .saturating_add(Weight::from_parts(336_223, 0).saturating_mul(r.into())) + // Standard Error: 483 + .saturating_add(Weight::from_parts(344_859, 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: `756 + r * (209 ±0)` // Estimated: `6660 + r * (2684 ±0)` - // Minimum execution time: 251_761_000 picoseconds. - Weight::from_parts(123_867_812, 0) + // Minimum execution time: 264_375_000 picoseconds. + Weight::from_parts(109_111_863, 0) .saturating_add(Weight::from_parts(0, 6660)) - // Standard Error: 5_721 - .saturating_add(Weight::from_parts(3_593_074, 0).saturating_mul(r.into())) + // Standard Error: 6_149 + .saturating_add(Weight::from_parts(3_594_614, 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: `755 + r * (213 ±0)` // Estimated: `6664 + r * (2688 ±0)` - // Minimum execution time: 253_260_000 picoseconds. - Weight::from_parts(122_638_012, 0) + // Minimum execution time: 265_303_000 picoseconds. + Weight::from_parts(104_558_689, 0) .saturating_add(Weight::from_parts(0, 6664)) - // Standard Error: 5_657 - .saturating_add(Weight::from_parts(4_446_444, 0).saturating_mul(r.into())) + // Standard Error: 6_227 + .saturating_add(Weight::from_parts(4_529_828, 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: `707 + r * (6 ±0)` // Estimated: `6649 + r * (6 ±0)` - // Minimum execution time: 265_832_000 picoseconds. - Weight::from_parts(278_076_283, 0) + // Minimum execution time: 258_147_000 picoseconds. + Weight::from_parts(274_749_500, 0) .saturating_add(Weight::from_parts(0, 6649)) - // Standard Error: 521 - .saturating_add(Weight::from_parts(425_871, 0).saturating_mul(r.into())) + // Standard Error: 469 + .saturating_add(Weight::from_parts(442_210, 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: `697 + r * (3 ±0)` // Estimated: `6638 + r * (3 ±0)` - // Minimum execution time: 247_041_000 picoseconds. - Weight::from_parts(270_211_028, 0) + // Minimum execution time: 263_750_000 picoseconds. + Weight::from_parts(273_744_370, 0) .saturating_add(Weight::from_parts(0, 6638)) - // Standard Error: 382 - .saturating_add(Weight::from_parts(178_814, 0).saturating_mul(r.into())) + // Standard Error: 442 + .saturating_add(Weight::from_parts(180_540, 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: `587 + r * (3 ±0)` // Estimated: `6527 + r * (3 ±0)` - // Minimum execution time: 247_396_000 picoseconds. - Weight::from_parts(264_917_022, 0) + // Minimum execution time: 249_670_000 picoseconds. + Weight::from_parts(263_179_468, 0) .saturating_add(Weight::from_parts(0, 6527)) - // Standard Error: 423 - .saturating_add(Weight::from_parts(155_798, 0).saturating_mul(r.into())) + // Standard Error: 341 + .saturating_add(Weight::from_parts(159_871, 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: `701 + r * (6 ±0)` // Estimated: `6641 + r * (6 ±0)` - // Minimum execution time: 261_724_000 picoseconds. - Weight::from_parts(277_431_180, 0) + // Minimum execution time: 250_891_000 picoseconds. + Weight::from_parts(273_887_256, 0) .saturating_add(Weight::from_parts(0, 6641)) - // Standard Error: 389 - .saturating_add(Weight::from_parts(333_728, 0).saturating_mul(r.into())) + // Standard Error: 439 + .saturating_add(Weight::from_parts(353_176, 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: `697 + r * (6 ±0)` // Estimated: `6640 + r * (6 ±0)` - // Minimum execution time: 256_630_000 picoseconds. - Weight::from_parts(276_475_250, 0) + // Minimum execution time: 255_571_000 picoseconds. + Weight::from_parts(274_661_450, 0) .saturating_add(Weight::from_parts(0, 6640)) - // Standard Error: 409 - .saturating_add(Weight::from_parts(370_509, 0).saturating_mul(r.into())) + // Standard Error: 553 + .saturating_add(Weight::from_parts(386_666, 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: `804 + r * (6 ±0)` // Estimated: `6746 + r * (6 ±0)` - // Minimum execution time: 259_780_000 picoseconds. - Weight::from_parts(281_983_753, 0) + // Minimum execution time: 253_404_000 picoseconds. + Weight::from_parts(287_084_276, 0) .saturating_add(Weight::from_parts(0, 6746)) - // Standard Error: 2_102 - .saturating_add(Weight::from_parts(1_573_750, 0).saturating_mul(r.into())) + // Standard Error: 919 + .saturating_add(Weight::from_parts(1_584_526, 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: `711 + r * (6 ±0)` // Estimated: `6657 + r * (6 ±0)` - // Minimum execution time: 252_699_000 picoseconds. - Weight::from_parts(274_966_217, 0) + // Minimum execution time: 256_714_000 picoseconds. + Weight::from_parts(275_785_694, 0) .saturating_add(Weight::from_parts(0, 6657)) - // Standard Error: 403 - .saturating_add(Weight::from_parts(332_075, 0).saturating_mul(r.into())) + // Standard Error: 438 + .saturating_add(Weight::from_parts(338_513, 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: `709 + r * (6 ±0)` // Estimated: `6650 + r * (6 ±0)` - // Minimum execution time: 250_500_000 picoseconds. - Weight::from_parts(275_299_296, 0) + // Minimum execution time: 265_128_000 picoseconds. + Weight::from_parts(273_589_414, 0) .saturating_add(Weight::from_parts(0, 6650)) - // Standard Error: 587 - .saturating_add(Weight::from_parts(333_630, 0).saturating_mul(r.into())) + // Standard Error: 474 + .saturating_add(Weight::from_parts(339_761, 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: `706 + r * (6 ±0)` // Estimated: `6653 + r * (6 ±0)` - // Minimum execution time: 266_862_000 picoseconds. - Weight::from_parts(279_291_039, 0) + // Minimum execution time: 252_148_000 picoseconds. + Weight::from_parts(275_791_006, 0) .saturating_add(Weight::from_parts(0, 6653)) - // Standard Error: 417 - .saturating_add(Weight::from_parts(324_577, 0).saturating_mul(r.into())) + // Standard Error: 528 + .saturating_add(Weight::from_parts(347_144, 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: `697 + r * (6 ±0)` // Estimated: `6638 + r * (6 ±0)` - // Minimum execution time: 251_063_000 picoseconds. - Weight::from_parts(276_033_235, 0) + // Minimum execution time: 262_513_000 picoseconds. + Weight::from_parts(276_692_018, 0) .saturating_add(Weight::from_parts(0, 6638)) - // Standard Error: 459 - .saturating_add(Weight::from_parts(334_378, 0).saturating_mul(r.into())) + // Standard Error: 426 + .saturating_add(Weight::from_parts(346_085, 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())) @@ -825,11 +825,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + r * (14 ±0)` // Estimated: `6706 + r * (14 ±0)` - // Minimum execution time: 265_708_000 picoseconds. - Weight::from_parts(289_604_523, 0) + // Minimum execution time: 248_447_000 picoseconds. + Weight::from_parts(282_926_309, 0) .saturating_add(Weight::from_parts(0, 6706)) - // Standard Error: 1_220 - .saturating_add(Weight::from_parts(1_321_861, 0).saturating_mul(r.into())) + // Standard Error: 617 + .saturating_add(Weight::from_parts(1_087_892, 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: `699 + r * (6 ±0)` // Estimated: `6641 + r * (6 ±0)` - // Minimum execution time: 263_066_000 picoseconds. - Weight::from_parts(277_863_988, 0) + // Minimum execution time: 262_180_000 picoseconds. + Weight::from_parts(276_558_128, 0) .saturating_add(Weight::from_parts(0, 6641)) - // Standard Error: 436 - .saturating_add(Weight::from_parts(277_154, 0).saturating_mul(r.into())) + // Standard Error: 507 + .saturating_add(Weight::from_parts(283_248, 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: `703` // Estimated: `6643` - // Minimum execution time: 253_821_000 picoseconds. - Weight::from_parts(225_478_751, 0) + // Minimum execution time: 269_240_000 picoseconds. + Weight::from_parts(224_377_959, 0) .saturating_add(Weight::from_parts(0, 6643)) - // Standard Error: 24 - .saturating_add(Weight::from_parts(977, 0).saturating_mul(n.into())) + // Standard Error: 23 + .saturating_add(Weight::from_parts(987, 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: `687 + r * (45 ±0)` // Estimated: `6627 + r * (45 ±0)` - // Minimum execution time: 244_636_000 picoseconds. - Weight::from_parts(269_805_144, 0) + // Minimum execution time: 243_589_000 picoseconds. + Weight::from_parts(267_823_838, 0) .saturating_add(Weight::from_parts(0, 6627)) - // Standard Error: 789_041 - .saturating_add(Weight::from_parts(8_721_455, 0).saturating_mul(r.into())) + // Standard Error: 725_131 + .saturating_add(Weight::from_parts(6_772_761, 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: `697` // Estimated: `6644` - // Minimum execution time: 254_582_000 picoseconds. - Weight::from_parts(276_484_548, 0) + // Minimum execution time: 265_859_000 picoseconds. + Weight::from_parts(276_755_170, 0) .saturating_add(Weight::from_parts(0, 6644)) - // Standard Error: 0 - .saturating_add(Weight::from_parts(315, 0).saturating_mul(n.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(321, 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: `2806 + r * (263 ±0)` // Estimated: `8746 + r * (5213 ±0)` - // Minimum execution time: 271_141_000 picoseconds. - Weight::from_parts(296_272_273, 0) + // Minimum execution time: 270_766_000 picoseconds. + Weight::from_parts(298_484_426, 0) .saturating_add(Weight::from_parts(0, 8746)) - // Standard Error: 862_556 - .saturating_add(Weight::from_parts(109_250_326, 0).saturating_mul(r.into())) + // Standard Error: 776_198 + .saturating_add(Weight::from_parts(110_171_373, 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)) @@ -999,13 +999,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_random(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `708 + r * (10 ±0)` - // Estimated: `6654 + r * (10 ±0)` - // Minimum execution time: 252_646_000 picoseconds. - Weight::from_parts(284_152_056, 0) - .saturating_add(Weight::from_parts(0, 6654)) - // Standard Error: 1_823 - .saturating_add(Weight::from_parts(1_240_242, 0).saturating_mul(r.into())) + // Measured: `744 + r * (10 ±0)` + // Estimated: `6688 + r * (10 ±0)` + // Minimum execution time: 252_432_000 picoseconds. + Weight::from_parts(284_617_353, 0) + .saturating_add(Weight::from_parts(0, 6688)) + // Standard Error: 732 + .saturating_add(Weight::from_parts(1_249_035, 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: `697 + r * (10 ±0)` // Estimated: `6639 + r * (10 ±0)` - // Minimum execution time: 250_050_000 picoseconds. - Weight::from_parts(283_160_879, 0) + // Minimum execution time: 261_148_000 picoseconds. + Weight::from_parts(274_018_132, 0) .saturating_add(Weight::from_parts(0, 6639)) - // Standard Error: 818 - .saturating_add(Weight::from_parts(2_179_785, 0).saturating_mul(r.into())) + // Standard Error: 2_060 + .saturating_add(Weight::from_parts(2_156_990, 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: `714 + t * (32 ±0)` // Estimated: `6659 + t * (2508 ±0)` - // Minimum execution time: 267_908_000 picoseconds. - Weight::from_parts(275_079_828, 0) + // Minimum execution time: 265_668_000 picoseconds. + Weight::from_parts(278_254_942, 0) .saturating_add(Weight::from_parts(0, 6659)) - // Standard Error: 85_152 - .saturating_add(Weight::from_parts(3_369_190, 0).saturating_mul(t.into())) - // Standard Error: 23 - .saturating_add(Weight::from_parts(972, 0).saturating_mul(n.into())) + // Standard Error: 92_096 + .saturating_add(Weight::from_parts(2_833_398, 0).saturating_mul(t.into())) + // Standard Error: 25 + .saturating_add(Weight::from_parts(843, 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: `696 + r * (7 ±0)` // Estimated: `6641 + r * (7 ±0)` - // Minimum execution time: 162_970_000 picoseconds. - Weight::from_parts(171_567_266, 0) + // Minimum execution time: 159_828_000 picoseconds. + Weight::from_parts(168_755_526, 0) .saturating_add(Weight::from_parts(0, 6641)) - // Standard Error: 373 - .saturating_add(Weight::from_parts(231_558, 0).saturating_mul(r.into())) + // Standard Error: 386 + .saturating_add(Weight::from_parts(233_944, 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: `125647` // Estimated: `131589` - // Minimum execution time: 413_356_000 picoseconds. - Weight::from_parts(383_652_761, 0) + // Minimum execution time: 417_269_000 picoseconds. + Weight::from_parts(380_296_983, 0) .saturating_add(Weight::from_parts(0, 131589)) // Standard Error: 12 - .saturating_add(Weight::from_parts(1_027, 0).saturating_mul(i.into())) + .saturating_add(Weight::from_parts(1_036, 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: `762 + r * (292 ±0)` // Estimated: `765 + r * (293 ±0)` - // Minimum execution time: 260_453_000 picoseconds. - Weight::from_parts(186_957_671, 0) + // Minimum execution time: 262_491_000 picoseconds. + Weight::from_parts(170_307_526, 0) .saturating_add(Weight::from_parts(0, 765)) - // Standard Error: 8_849 - .saturating_add(Weight::from_parts(6_108_331, 0).saturating_mul(r.into())) + // Standard Error: 9_946 + .saturating_add(Weight::from_parts(6_208_430, 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: `1247` // Estimated: `1245` - // Minimum execution time: 269_392_000 picoseconds. - Weight::from_parts(335_649_343, 0) + // Minimum execution time: 272_933_000 picoseconds. + Weight::from_parts(334_328_165, 0) .saturating_add(Weight::from_parts(0, 1245)) - // Standard Error: 62 - .saturating_add(Weight::from_parts(626, 0).saturating_mul(n.into())) + // Standard Error: 71 + .saturating_add(Weight::from_parts(740, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(8)) } @@ -1166,9 +1166,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1092 + n * (1 ±0)` // Estimated: `1092 + n * (1 ±0)` - // Minimum execution time: 270_664_000 picoseconds. - Weight::from_parts(298_600_976, 0) + // Minimum execution time: 270_192_000 picoseconds. + Weight::from_parts(298_684_622, 0) .saturating_add(Weight::from_parts(0, 1092)) + // Standard Error: 45 + .saturating_add(Weight::from_parts(104, 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())) @@ -1180,11 +1182,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `760 + r * (288 ±0)` // Estimated: `765 + r * (289 ±0)` - // Minimum execution time: 248_711_000 picoseconds. - Weight::from_parts(173_396_090, 0) + // Minimum execution time: 263_715_000 picoseconds. + Weight::from_parts(178_336_315, 0) .saturating_add(Weight::from_parts(0, 765)) - // Standard Error: 9_333 - .saturating_add(Weight::from_parts(6_056_350, 0).saturating_mul(r.into())) + // Standard Error: 9_821 + .saturating_add(Weight::from_parts(6_081_342, 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)) @@ -1198,11 +1200,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1088 + n * (1 ±0)` // Estimated: `1088 + n * (1 ±0)` - // Minimum execution time: 272_709_000 picoseconds. - Weight::from_parts(297_558_758, 0) + // Minimum execution time: 271_846_000 picoseconds. + Weight::from_parts(294_440_737, 0) .saturating_add(Weight::from_parts(0, 1088)) - // Standard Error: 38 - .saturating_add(Weight::from_parts(175, 0).saturating_mul(n.into())) + // Standard Error: 36 + .saturating_add(Weight::from_parts(218, 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())) @@ -1214,11 +1216,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `760 + r * (296 ±0)` // Estimated: `762 + r * (297 ±0)` - // Minimum execution time: 254_413_000 picoseconds. - Weight::from_parts(202_851_564, 0) + // Minimum execution time: 248_935_000 picoseconds. + Weight::from_parts(200_708_321, 0) .saturating_add(Weight::from_parts(0, 762)) - // Standard Error: 7_468 - .saturating_add(Weight::from_parts(5_053_686, 0).saturating_mul(r.into())) + // Standard Error: 7_790 + .saturating_add(Weight::from_parts(5_090_214, 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)) @@ -1231,11 +1233,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1104 + n * (1 ±0)` // Estimated: `1104 + n * (1 ±0)` - // Minimum execution time: 271_680_000 picoseconds. - Weight::from_parts(296_145_860, 0) + // Minimum execution time: 270_565_000 picoseconds. + Weight::from_parts(292_227_347, 0) .saturating_add(Weight::from_parts(0, 1104)) // Standard Error: 37 - .saturating_add(Weight::from_parts(790, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_106, 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())) @@ -1247,11 +1249,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + r * (288 ±0)` // Estimated: `768 + r * (289 ±0)` - // Minimum execution time: 266_644_000 picoseconds. - Weight::from_parts(207_000_534, 0) + // Minimum execution time: 267_090_000 picoseconds. + Weight::from_parts(205_150_534, 0) .saturating_add(Weight::from_parts(0, 768)) - // Standard Error: 7_376 - .saturating_add(Weight::from_parts(4_876_285, 0).saturating_mul(r.into())) + // Standard Error: 7_738 + .saturating_add(Weight::from_parts(4_876_679, 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)) @@ -1264,11 +1266,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1091 + n * (1 ±0)` // Estimated: `1091 + n * (1 ±0)` - // Minimum execution time: 267_436_000 picoseconds. - Weight::from_parts(290_660_966, 0) + // Minimum execution time: 267_490_000 picoseconds. + Weight::from_parts(293_606_923, 0) .saturating_add(Weight::from_parts(0, 1091)) - // Standard Error: 30 - .saturating_add(Weight::from_parts(266, 0).saturating_mul(n.into())) + // Standard Error: 39 + .saturating_add(Weight::from_parts(48, 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())) @@ -1280,11 +1282,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `753 + r * (296 ±0)` // Estimated: `758 + r * (297 ±0)` - // Minimum execution time: 255_795_000 picoseconds. - Weight::from_parts(182_417_685, 0) + // Minimum execution time: 267_659_000 picoseconds. + Weight::from_parts(179_039_030, 0) .saturating_add(Weight::from_parts(0, 758)) - // Standard Error: 8_960 - .saturating_add(Weight::from_parts(6_156_609, 0).saturating_mul(r.into())) + // Standard Error: 9_828 + .saturating_add(Weight::from_parts(6_214_676, 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)) @@ -1298,11 +1300,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1105 + n * (1 ±0)` // Estimated: `1105 + n * (1 ±0)` - // Minimum execution time: 274_802_000 picoseconds. - Weight::from_parts(297_463_855, 0) + // Minimum execution time: 275_536_000 picoseconds. + Weight::from_parts(299_103_208, 0) .saturating_add(Weight::from_parts(0, 1105)) - // Standard Error: 32 - .saturating_add(Weight::from_parts(569, 0).saturating_mul(n.into())) + // Standard Error: 37 + .saturating_add(Weight::from_parts(500, 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())) @@ -1326,11 +1328,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `730 + r * (45 ±0)` // Estimated: `6724 + r * (2520 ±0)` - // Minimum execution time: 251_771_000 picoseconds. - Weight::from_parts(61_170_990, 0) + // Minimum execution time: 263_546_000 picoseconds. + Weight::from_parts(102_779_473, 0) .saturating_add(Weight::from_parts(0, 6724)) - // Standard Error: 20_678 - .saturating_add(Weight::from_parts(33_252_079, 0).saturating_mul(r.into())) + // Standard Error: 24_117 + .saturating_add(Weight::from_parts(31_798_968, 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)) @@ -1356,11 +1358,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1094 + r * (245 ±0)` // Estimated: `9274 + r * (2721 ±0)` - // Minimum execution time: 265_770_000 picoseconds. - Weight::from_parts(271_623_000, 0) + // Minimum execution time: 255_172_000 picoseconds. + Weight::from_parts(268_485_000, 0) .saturating_add(Weight::from_parts(0, 9274)) - // Standard Error: 91_863 - .saturating_add(Weight::from_parts(247_455_441, 0).saturating_mul(r.into())) + // Standard Error: 119_021 + .saturating_add(Weight::from_parts(244_159_562, 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)) @@ -1385,12 +1387,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_delegate_call(r: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (576 ±0)` - // Estimated: `6646 + r * (2637 ±3)` - // Minimum execution time: 252_272_000 picoseconds. - Weight::from_parts(268_174_000, 0) + // Estimated: `6646 + r * (2637 ±10)` + // Minimum execution time: 252_240_000 picoseconds. + Weight::from_parts(269_744_000, 0) .saturating_add(Weight::from_parts(0, 6646)) - // Standard Error: 139_524 - .saturating_add(Weight::from_parts(246_947_885, 0).saturating_mul(r.into())) + // Standard Error: 166_323 + .saturating_add(Weight::from_parts(243_405_715, 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)) @@ -1417,13 +1419,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1141 + t * (243 ±0)` // Estimated: `12031 + t * (5193 ±0)` - // Minimum execution time: 451_927_000 picoseconds. - Weight::from_parts(87_218_820, 0) + // Minimum execution time: 454_480_000 picoseconds. + Weight::from_parts(81_521_014, 0) .saturating_add(Weight::from_parts(0, 12031)) - // Standard Error: 11_633_424 - .saturating_add(Weight::from_parts(346_578_672, 0).saturating_mul(t.into())) - // Standard Error: 17 - .saturating_add(Weight::from_parts(965, 0).saturating_mul(c.into())) + // Standard Error: 11_565_070 + .saturating_add(Weight::from_parts(346_510_957, 0).saturating_mul(t.into())) + // Standard Error: 16 + .saturating_add(Weight::from_parts(972, 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)) @@ -1453,11 +1455,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `882 + r * (255 ±0)` // Estimated: `9153 + r * (2730 ±0)` - // Minimum execution time: 622_505_000 picoseconds. - Weight::from_parts(638_303_000, 0) + // Minimum execution time: 639_320_000 picoseconds. + Weight::from_parts(641_648_000, 0) .saturating_add(Weight::from_parts(0, 9153)) - // Standard Error: 255_875 - .saturating_add(Weight::from_parts(362_567_992, 0).saturating_mul(r.into())) + // Standard Error: 249_659 + .saturating_add(Weight::from_parts(360_455_197, 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)) @@ -1489,13 +1491,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1084 + t * (66 ±0)` // Estimated: `11998 + t * (2553 ±1)` - // Minimum execution time: 2_644_784_000 picoseconds. - Weight::from_parts(1_463_284_413, 0) + // Minimum execution time: 2_637_739_000 picoseconds. + Weight::from_parts(1_465_461_389, 0) .saturating_add(Weight::from_parts(0, 11998)) - // Standard Error: 18 - .saturating_add(Weight::from_parts(1_213, 0).saturating_mul(i.into())) - // Standard Error: 18 - .saturating_add(Weight::from_parts(1_391, 0).saturating_mul(s.into())) + // Standard Error: 17 + .saturating_add(Weight::from_parts(1_321, 0).saturating_mul(i.into())) + // Standard Error: 17 + .saturating_add(Weight::from_parts(1_509, 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)) @@ -1521,11 +1523,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `696 + r * (8 ±0)` // Estimated: `6635 + r * (8 ±0)` - // Minimum execution time: 261_346_000 picoseconds. - Weight::from_parts(273_731_216, 0) + // Minimum execution time: 249_675_000 picoseconds. + Weight::from_parts(272_744_383, 0) .saturating_add(Weight::from_parts(0, 6635)) - // Standard Error: 559 - .saturating_add(Weight::from_parts(388_940, 0).saturating_mul(r.into())) + // Standard Error: 478 + .saturating_add(Weight::from_parts(401_718, 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())) @@ -1549,11 +1551,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `704` // Estimated: `6642` - // Minimum execution time: 254_723_000 picoseconds. - Weight::from_parts(285_802_556, 0) + // Minimum execution time: 266_159_000 picoseconds. + Weight::from_parts(292_629_090, 0) .saturating_add(Weight::from_parts(0, 6642)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_350, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_347, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1576,11 +1578,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `698 + r * (8 ±0)` // Estimated: `6640 + r * (8 ±0)` - // Minimum execution time: 248_364_000 picoseconds. - Weight::from_parts(276_452_804, 0) + // Minimum execution time: 249_013_000 picoseconds. + Weight::from_parts(277_175_437, 0) .saturating_add(Weight::from_parts(0, 6640)) - // Standard Error: 483 - .saturating_add(Weight::from_parts(795_304, 0).saturating_mul(r.into())) + // Standard Error: 556 + .saturating_add(Weight::from_parts(827_082, 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())) @@ -1604,11 +1606,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `706` // Estimated: `6648` - // Minimum execution time: 255_326_000 picoseconds. - Weight::from_parts(300_497_326, 0) + // Minimum execution time: 270_298_000 picoseconds. + Weight::from_parts(291_867_418, 0) .saturating_add(Weight::from_parts(0, 6648)) // Standard Error: 1 - .saturating_add(Weight::from_parts(3_598, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(3_619, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1631,11 +1633,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `698 + r * (8 ±0)` // Estimated: `6642 + r * (8 ±0)` - // Minimum execution time: 258_999_000 picoseconds. - Weight::from_parts(276_429_037, 0) + // Minimum execution time: 261_456_000 picoseconds. + Weight::from_parts(273_757_546, 0) .saturating_add(Weight::from_parts(0, 6642)) - // Standard Error: 549 - .saturating_add(Weight::from_parts(448_999, 0).saturating_mul(r.into())) + // Standard Error: 489 + .saturating_add(Weight::from_parts(454_718, 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())) @@ -1659,11 +1661,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `706` // Estimated: `6647` - // Minimum execution time: 257_284_000 picoseconds. - Weight::from_parts(288_841_074, 0) + // Minimum execution time: 263_697_000 picoseconds. + Weight::from_parts(292_261_723, 0) .saturating_add(Weight::from_parts(0, 6647)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_461, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_451, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1686,11 +1688,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `698 + r * (8 ±0)` // Estimated: `6639 + r * (8 ±0)` - // Minimum execution time: 250_815_000 picoseconds. - Weight::from_parts(276_225_165, 0) + // Minimum execution time: 247_367_000 picoseconds. + Weight::from_parts(272_877_693, 0) .saturating_add(Weight::from_parts(0, 6639)) - // Standard Error: 489 - .saturating_add(Weight::from_parts(452_227, 0).saturating_mul(r.into())) + // Standard Error: 437 + .saturating_add(Weight::from_parts(455_834, 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())) @@ -1714,11 +1716,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `706` // Estimated: `6645` - // Minimum execution time: 264_800_000 picoseconds. - Weight::from_parts(289_594_720, 0) + // Minimum execution time: 256_639_000 picoseconds. + Weight::from_parts(291_618_505, 0) .saturating_add(Weight::from_parts(0, 6645)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_458, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_472, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1741,11 +1743,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `831 + n * (1 ±0)` // Estimated: `6768 + n * (1 ±0)` - // Minimum execution time: 332_802_000 picoseconds. - Weight::from_parts(340_335_706, 0) + // Minimum execution time: 339_076_000 picoseconds. + Weight::from_parts(352_652_311, 0) .saturating_add(Weight::from_parts(0, 6768)) // Standard Error: 13 - .saturating_add(Weight::from_parts(6_477, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(6_549, 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,11 +1771,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `641 + r * (112 ±0)` // Estimated: `6582 + r * (112 ±0)` - // Minimum execution time: 260_959_000 picoseconds. - Weight::from_parts(295_371_613, 0) + // Minimum execution time: 249_115_000 picoseconds. + Weight::from_parts(303_325_452, 0) .saturating_add(Weight::from_parts(0, 6582)) - // Standard Error: 7_769 - .saturating_add(Weight::from_parts(55_952_037, 0).saturating_mul(r.into())) + // Standard Error: 9_207 + .saturating_add(Weight::from_parts(55_868_752, 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())) @@ -1797,11 +1799,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `741 + r * (76 ±0)` // Estimated: `6635 + r * (77 ±0)` - // Minimum execution time: 258_435_000 picoseconds. - Weight::from_parts(301_371_682, 0) + // Minimum execution time: 264_678_000 picoseconds. + Weight::from_parts(317_373_372, 0) .saturating_add(Weight::from_parts(0, 6635)) - // Standard Error: 9_832 - .saturating_add(Weight::from_parts(45_896_851, 0).saturating_mul(r.into())) + // Standard Error: 17_627 + .saturating_add(Weight::from_parts(45_882_616, 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())) @@ -1825,11 +1827,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `711 + r * (42 ±0)` // Estimated: `6650 + r * (42 ±0)` - // Minimum execution time: 263_410_000 picoseconds. - Weight::from_parts(286_738_435, 0) + // Minimum execution time: 253_459_000 picoseconds. + Weight::from_parts(292_927_061, 0) .saturating_add(Weight::from_parts(0, 6650)) - // Standard Error: 6_427 - .saturating_add(Weight::from_parts(11_743_730, 0).saturating_mul(r.into())) + // Standard Error: 6_356 + .saturating_add(Weight::from_parts(11_910_639, 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())) @@ -1853,11 +1855,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + r * (965 ±0)` // Estimated: `6641 + r * (3090 ±7)` - // Minimum execution time: 265_297_000 picoseconds. - Weight::from_parts(270_105_000, 0) + // Minimum execution time: 251_844_000 picoseconds. + Weight::from_parts(266_343_000, 0) .saturating_add(Weight::from_parts(0, 6641)) - // Standard Error: 40_931 - .saturating_add(Weight::from_parts(22_578_917, 0).saturating_mul(r.into())) + // Standard Error: 42_469 + .saturating_add(Weight::from_parts(22_862_698, 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)) @@ -1883,11 +1885,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + r * (131 ±0)` // Estimated: `6712 + r * (2606 ±0)` - // Minimum execution time: 251_996_000 picoseconds. - Weight::from_parts(284_124_458, 0) + // Minimum execution time: 254_508_000 picoseconds. + Weight::from_parts(281_748_085, 0) .saturating_add(Weight::from_parts(0, 6712)) - // Standard Error: 23_083 - .saturating_add(Weight::from_parts(6_118_398, 0).saturating_mul(r.into())) + // Standard Error: 21_980 + .saturating_add(Weight::from_parts(6_240_858, 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)) @@ -1913,11 +1915,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `803 + r * (183 ±0)` // Estimated: `129453 + r * (2568 ±0)` - // Minimum execution time: 251_781_000 picoseconds. - Weight::from_parts(282_122_116, 0) + // Minimum execution time: 268_190_000 picoseconds. + Weight::from_parts(287_321_785, 0) .saturating_add(Weight::from_parts(0, 129453)) - // Standard Error: 20_039 - .saturating_add(Weight::from_parts(5_542_877, 0).saturating_mul(r.into())) + // Standard Error: 21_861 + .saturating_add(Weight::from_parts(5_482_785, 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)) @@ -1943,11 +1945,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `692 + r * (3 ±0)` // Estimated: `6638 + r * (3 ±0)` - // Minimum execution time: 262_672_000 picoseconds. - Weight::from_parts(272_927_403, 0) + // Minimum execution time: 248_385_000 picoseconds. + Weight::from_parts(272_984_428, 0) .saturating_add(Weight::from_parts(0, 6638)) - // Standard Error: 418 - .saturating_add(Weight::from_parts(169_287, 0).saturating_mul(r.into())) + // Standard Error: 372 + .saturating_add(Weight::from_parts(174_210, 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())) @@ -1971,11 +1973,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1943 + r * (39 ±0)` // Estimated: `7733 + r * (40 ±0)` - // Minimum execution time: 251_460_000 picoseconds. - Weight::from_parts(313_343_258, 0) + // Minimum execution time: 270_363_000 picoseconds. + Weight::from_parts(316_329_113, 0) .saturating_add(Weight::from_parts(0, 7733)) - // Standard Error: 778 - .saturating_add(Weight::from_parts(247_569, 0).saturating_mul(r.into())) + // Standard Error: 823 + .saturating_add(Weight::from_parts(259_012, 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())) @@ -2001,11 +2003,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (3 ±0)` // Estimated: `6635 + r * (3 ±0)` - // Minimum execution time: 248_876_000 picoseconds. - Weight::from_parts(271_255_999, 0) + // Minimum execution time: 254_013_000 picoseconds. + Weight::from_parts(271_666_562, 0) .saturating_add(Weight::from_parts(0, 6635)) - // Standard Error: 415 - .saturating_add(Weight::from_parts(151_603, 0).saturating_mul(r.into())) + // Standard Error: 336 + .saturating_add(Weight::from_parts(153_041, 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())) @@ -2015,10 +2017,10 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_646_000 picoseconds. - Weight::from_parts(1_723_586, 0) + // Minimum execution time: 1_504_000 picoseconds. + Weight::from_parts(1_973_649, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 10 - .saturating_add(Weight::from_parts(11_955, 0).saturating_mul(r.into())) + // Standard Error: 25 + .saturating_add(Weight::from_parts(11_299, 0).saturating_mul(r.into())) } } diff --git a/runtime/trappist/src/weights/pallet_democracy.rs b/runtime/trappist/src/weights/pallet_democracy.rs index de13103c..4d27dd5a 100644 --- a/runtime/trappist/src/weights/pallet_democracy.rs +++ b/runtime/trappist/src/weights/pallet_democracy.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_democracy` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -62,8 +62,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4768` // Estimated: `18187` - // Minimum execution time: 40_972_000 picoseconds. - Weight::from_parts(42_138_000, 0) + // Minimum execution time: 39_242_000 picoseconds. + Weight::from_parts(40_280_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: 35_712_000 picoseconds. - Weight::from_parts(37_434_000, 0) + // Minimum execution time: 35_970_000 picoseconds. + Weight::from_parts(36_508_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: 51_250_000 picoseconds. - Weight::from_parts(52_541_000, 0) + // Minimum execution time: 49_303_000 picoseconds. + Weight::from_parts(51_278_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: 55_239_000 picoseconds. - Weight::from_parts(56_536_000, 0) + // Minimum execution time: 52_466_000 picoseconds. + Weight::from_parts(54_255_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: 22_455_000 picoseconds. - Weight::from_parts(22_815_000, 0) + // Minimum execution time: 22_720_000 picoseconds. + Weight::from_parts(23_551_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: 100_501_000 picoseconds. - Weight::from_parts(103_091_000, 0) + // Minimum execution time: 98_965_000 picoseconds. + Weight::from_parts(100_945_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: 11_810_000 picoseconds. - Weight::from_parts(12_287_000, 0) + // Minimum execution time: 11_987_000 picoseconds. + Weight::from_parts(12_676_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_395_000 picoseconds. - Weight::from_parts(2_652_000, 0) + // Minimum execution time: 2_514_000 picoseconds. + Weight::from_parts(2_655_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_480_000 picoseconds. - Weight::from_parts(2_629_000, 0) + // Minimum execution time: 2_488_000 picoseconds. + Weight::from_parts(2_639_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: 22_330_000 picoseconds. - Weight::from_parts(22_994_000, 0) + // Minimum execution time: 22_598_000 picoseconds. + Weight::from_parts(22_912_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: 25_117_000 picoseconds. - Weight::from_parts(25_933_000, 0) + // Minimum execution time: 25_721_000 picoseconds. + Weight::from_parts(26_391_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: 83_653_000 picoseconds. - Weight::from_parts(85_540_000, 0) + // Minimum execution time: 81_670_000 picoseconds. + Weight::from_parts(83_273_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: 16_551_000 picoseconds. - Weight::from_parts(16_969_000, 0) + // Minimum execution time: 16_580_000 picoseconds. + Weight::from_parts(17_062_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: 5_760_000 picoseconds. - Weight::from_parts(6_548_332, 0) + // Minimum execution time: 5_653_000 picoseconds. + Weight::from_parts(6_509_121, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 6_429 - .saturating_add(Weight::from_parts(3_113_108, 0).saturating_mul(r.into())) + // Standard Error: 6_380 + .saturating_add(Weight::from_parts(3_210_570, 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: 7_755_000 picoseconds. - Weight::from_parts(8_289_081, 0) + // Minimum execution time: 7_753_000 picoseconds. + Weight::from_parts(7_761_868, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 7_137 - .saturating_add(Weight::from_parts(3_150_826, 0).saturating_mul(r.into())) + // Standard Error: 7_007 + .saturating_add(Weight::from_parts(3_229_293, 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: 37_621_000 picoseconds. - Weight::from_parts(44_024_497, 0) + // Minimum execution time: 36_210_000 picoseconds. + Weight::from_parts(42_720_434, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 7_418 - .saturating_add(Weight::from_parts(3_985_526, 0).saturating_mul(r.into())) + // Standard Error: 8_174 + .saturating_add(Weight::from_parts(4_050_722, 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: 17_673_000 picoseconds. - Weight::from_parts(18_961_817, 0) + // Minimum execution time: 17_928_000 picoseconds. + Weight::from_parts(19_341_683, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 7_027 - .saturating_add(Weight::from_parts(3_954_685, 0).saturating_mul(r.into())) + // Standard Error: 7_793 + .saturating_add(Weight::from_parts(4_016_799, 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_523_000 picoseconds. - Weight::from_parts(2_647_000, 0) + // Minimum execution time: 2_528_000 picoseconds. + Weight::from_parts(2_652_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: 21_890_000 picoseconds. - Weight::from_parts(34_973_026, 0) + // Minimum execution time: 21_076_000 picoseconds. + Weight::from_parts(32_146_204, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_336 - .saturating_add(Weight::from_parts(107_477, 0).saturating_mul(r.into())) + // Standard Error: 2_875 + .saturating_add(Weight::from_parts(93_177, 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: 30_723_000 picoseconds. - Weight::from_parts(34_125_910, 0) + // Minimum execution time: 28_733_000 picoseconds. + Weight::from_parts(31_689_462, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_969 - .saturating_add(Weight::from_parts(123_637, 0).saturating_mul(r.into())) + // Standard Error: 1_884 + .saturating_add(Weight::from_parts(125_192, 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_031_000 picoseconds. - Weight::from_parts(18_291_876, 0) + // Minimum execution time: 15_421_000 picoseconds. + Weight::from_parts(18_520_899, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_713 - .saturating_add(Weight::from_parts(121_953, 0).saturating_mul(r.into())) + // Standard Error: 1_801 + .saturating_add(Weight::from_parts(121_810, 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_353_000 picoseconds. - Weight::from_parts(18_559_799, 0) + // Minimum execution time: 15_307_000 picoseconds. + Weight::from_parts(18_720_307, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_795 - .saturating_add(Weight::from_parts(120_727, 0).saturating_mul(r.into())) + // Standard Error: 1_759 + .saturating_add(Weight::from_parts(121_991, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -449,8 +449,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `323` // Estimated: `3556` - // Minimum execution time: 17_357_000 picoseconds. - Weight::from_parts(17_738_000, 0) + // Minimum execution time: 17_903_000 picoseconds. + Weight::from_parts(18_422_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -463,8 +463,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 14_238_000 picoseconds. - Weight::from_parts(14_728_000, 0) + // Minimum execution time: 14_412_000 picoseconds. + Weight::from_parts(14_837_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -481,8 +481,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4855` // Estimated: `18187` - // Minimum execution time: 39_685_000 picoseconds. - Weight::from_parts(40_500_000, 0) + // Minimum execution time: 39_360_000 picoseconds. + Weight::from_parts(39_791_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -495,8 +495,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4789` // Estimated: `18187` - // Minimum execution time: 35_795_000 picoseconds. - Weight::from_parts(36_564_000, 0) + // Minimum execution time: 35_484_000 picoseconds. + Weight::from_parts(36_424_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -511,8 +511,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 13_951_000 picoseconds. - Weight::from_parts(14_402_000, 0) + // Minimum execution time: 14_149_000 picoseconds. + Weight::from_parts(14_648_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -525,8 +525,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3666` - // Minimum execution time: 16_635_000 picoseconds. - Weight::from_parts(16_960_000, 0) + // Minimum execution time: 16_766_000 picoseconds. + Weight::from_parts(17_227_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_identity.rs b/runtime/trappist/src/weights/pallet_identity.rs new file mode 100644 index 00000000..8d995ad9 --- /dev/null +++ b/runtime/trappist/src/weights/pallet_identity.rs @@ -0,0 +1,341 @@ +// This file is part of Trappist. + +// Copyright (C) Parity Technologies (UK) Ltd. +// SPDX-License-Identifier: Apache-2.0 + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//! Autogenerated weights for `pallet_identity` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/production/trappist-node +// benchmark +// pallet +// --chain=trappist-dev +// --steps=50 +// --repeat=20 +// --no-storage-info +// --no-median-slopes +// --no-min-squares +// --pallet=pallet_identity +// --extrinsic=* +// --wasm-execution=compiled +// --header=./templates/file_header.txt +// --output=./runtime/trappist/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_identity`. +pub struct WeightInfo(PhantomData); +impl pallet_identity::WeightInfo for WeightInfo { + /// Storage: `Identity::Registrars` (r:1 w:1) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 19]`. + fn add_registrar(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `32 + r * (57 ±0)` + // Estimated: `2626` + // Minimum execution time: 8_840_000 picoseconds. + Weight::from_parts(9_611_435, 0) + .saturating_add(Weight::from_parts(0, 2626)) + // Standard Error: 1_521 + .saturating_add(Weight::from_parts(89_748, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 20]`. + fn set_identity(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `6977 + r * (5 ±0)` + // Estimated: `11003` + // Minimum execution time: 103_092_000 picoseconds. + Weight::from_parts(104_993_945, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 4_888 + .saturating_add(Weight::from_parts(114_481, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::IdentityOf` (r:1 w:0) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:100 w:100) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// The range of component `s` is `[0, 100]`. + fn set_subs_new(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `101` + // Estimated: `11003 + s * (2589 ±0)` + // Minimum execution time: 8_412_000 picoseconds. + Weight::from_parts(19_010_951, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 3_786 + .saturating_add(Weight::from_parts(3_121_167, 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)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) + .saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into())) + } + /// Storage: `Identity::IdentityOf` (r:1 w:0) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:0 w:100) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// The range of component `p` is `[0, 100]`. + fn set_subs_old(p: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `194 + p * (32 ±0)` + // Estimated: `11003` + // Minimum execution time: 8_268_000 picoseconds. + Weight::from_parts(19_618_735, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 2_896 + .saturating_add(Weight::from_parts(1_300_661, 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()))) + } + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:0 w:100) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 20]`. + /// The range of component `s` is `[0, 100]`. + fn clear_identity(r: u32, s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `7069 + r * (5 ±0) + s * (32 ±0)` + // Estimated: `11003` + // Minimum execution time: 52_605_000 picoseconds. + Weight::from_parts(53_071_294, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 8_444 + .saturating_add(Weight::from_parts(156_692, 0).saturating_mul(r.into())) + // Standard Error: 1_647 + .saturating_add(Weight::from_parts(1_287_295, 0).saturating_mul(s.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()))) + } + /// Storage: `Identity::Registrars` (r:1 w:0) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 20]`. + fn request_judgement(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `6967 + r * (57 ±0)` + // Estimated: `11003` + // Minimum execution time: 70_630_000 picoseconds. + Weight::from_parts(72_546_546, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 5_092 + .saturating_add(Weight::from_parts(143_527, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 20]`. + fn cancel_request(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `6998` + // Estimated: `11003` + // Minimum execution time: 68_863_000 picoseconds. + Weight::from_parts(70_040_301, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 3_025 + .saturating_add(Weight::from_parts(97_546, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::Registrars` (r:1 w:1) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 19]`. + fn set_fee(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `89 + r * (57 ±0)` + // Estimated: `2626` + // Minimum execution time: 6_423_000 picoseconds. + Weight::from_parts(6_896_023, 0) + .saturating_add(Weight::from_parts(0, 2626)) + // Standard Error: 1_164 + .saturating_add(Weight::from_parts(73_687, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::Registrars` (r:1 w:1) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 19]`. + fn set_account_id(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `89 + r * (57 ±0)` + // Estimated: `2626` + // Minimum execution time: 5_693_000 picoseconds. + Weight::from_parts(6_114_643, 0) + .saturating_add(Weight::from_parts(0, 2626)) + // Standard Error: 916 + .saturating_add(Weight::from_parts(65_843, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::Registrars` (r:1 w:1) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 19]`. + fn set_fields(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `89 + r * (57 ±0)` + // Estimated: `2626` + // Minimum execution time: 5_629_000 picoseconds. + Weight::from_parts(6_070_817, 0) + .saturating_add(Weight::from_parts(0, 2626)) + // Standard Error: 984 + .saturating_add(Weight::from_parts(59_011, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::Registrars` (r:1 w:0) + /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(1141), added: 1636, mode: `MaxEncodedLen`) + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 19]`. + fn provide_judgement(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `7045 + r * (57 ±0)` + // Estimated: `11003` + // Minimum execution time: 93_001_000 picoseconds. + Weight::from_parts(94_930_086, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 4_128 + .saturating_add(Weight::from_parts(92_010, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// Storage: `Identity::IdentityOf` (r:1 w:1) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:0 w:100) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// The range of component `r` is `[1, 20]`. + /// The range of component `s` is `[0, 100]`. + fn kill_identity(r: u32, s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `7243 + r * (5 ±0) + s * (32 ±0)` + // Estimated: `11003` + // Minimum execution time: 56_342_000 picoseconds. + Weight::from_parts(57_229_142, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 10_499 + .saturating_add(Weight::from_parts(185_400, 0).saturating_mul(r.into())) + // Standard Error: 2_048 + .saturating_add(Weight::from_parts(1_309_824, 0).saturating_mul(s.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()))) + } + /// Storage: `Identity::IdentityOf` (r:1 w:0) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:1 w:1) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// The range of component `s` is `[0, 99]`. + fn add_sub(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `475 + s * (36 ±0)` + // Estimated: `11003` + // Minimum execution time: 23_858_000 picoseconds. + Weight::from_parts(27_802_556, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 1_007 + .saturating_add(Weight::from_parts(89_756, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Identity::IdentityOf` (r:1 w:0) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:1 w:1) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// The range of component `s` is `[1, 100]`. + fn rename_sub(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `591 + s * (3 ±0)` + // Estimated: `11003` + // Minimum execution time: 11_785_000 picoseconds. + Weight::from_parts(13_365_693, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 507 + .saturating_add(Weight::from_parts(40_682, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Identity::IdentityOf` (r:1 w:0) + /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7538), added: 10013, mode: `MaxEncodedLen`) + /// Storage: `Identity::SuperOf` (r:1 w:1) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// The range of component `s` is `[1, 100]`. + fn remove_sub(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `638 + s * (35 ±0)` + // Estimated: `11003` + // Minimum execution time: 26_943_000 picoseconds. + Weight::from_parts(29_397_954, 0) + .saturating_add(Weight::from_parts(0, 11003)) + // Standard Error: 781 + .saturating_add(Weight::from_parts(82_301, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Identity::SuperOf` (r:1 w:1) + /// Proof: `Identity::SuperOf` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) + /// Storage: `Identity::SubsOf` (r:1 w:1) + /// Proof: `Identity::SubsOf` (`max_values`: None, `max_size`: Some(3258), added: 5733, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:0) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// The range of component `s` is `[0, 99]`. + fn quit_sub(s: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `667 + s * (37 ±0)` + // Estimated: `6723` + // Minimum execution time: 20_956_000 picoseconds. + Weight::from_parts(22_950_586, 0) + .saturating_add(Weight::from_parts(0, 6723)) + // Standard Error: 696 + .saturating_add(Weight::from_parts(79_496, 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_message_queue.rs b/runtime/trappist/src/weights/pallet_message_queue.rs new file mode 100644 index 00000000..d5268110 --- /dev/null +++ b/runtime/trappist/src/weights/pallet_message_queue.rs @@ -0,0 +1,181 @@ +// This file is part of Trappist. + +// Copyright (C) Parity Technologies (UK) Ltd. +// SPDX-License-Identifier: Apache-2.0 + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//! Autogenerated weights for `pallet_message_queue` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/production/trappist-node +// benchmark +// pallet +// --chain=trappist-dev +// --steps=50 +// --repeat=20 +// --no-storage-info +// --no-median-slopes +// --no-min-squares +// --pallet=pallet_message_queue +// --extrinsic=* +// --wasm-execution=compiled +// --header=./templates/file_header.txt +// --output=./runtime/trappist/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_message_queue`. +pub struct WeightInfo(PhantomData); +impl pallet_message_queue::WeightInfo for WeightInfo { + /// Storage: `MessageQueue::ServiceHead` (r:1 w:0) + /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::BookStateFor` (r:2 w:2) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + fn ready_ring_knit() -> Weight { + // Proof Size summary in bytes: + // Measured: `260` + // Estimated: `6044` + // Minimum execution time: 11_917_000 picoseconds. + Weight::from_parts(12_486_000, 0) + .saturating_add(Weight::from_parts(0, 6044)) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `MessageQueue::BookStateFor` (r:2 w:2) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::ServiceHead` (r:1 w:1) + /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) + fn ready_ring_unknit() -> Weight { + // Proof Size summary in bytes: + // Measured: `255` + // Estimated: `6044` + // Minimum execution time: 10_795_000 picoseconds. + Weight::from_parts(11_223_000, 0) + .saturating_add(Weight::from_parts(0, 6044)) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(3)) + } + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + fn service_queue_base() -> Weight { + // Proof Size summary in bytes: + // Measured: `42` + // Estimated: `3517` + // Minimum execution time: 4_838_000 picoseconds. + Weight::from_parts(4_990_000, 0) + .saturating_add(Weight::from_parts(0, 3517)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `MessageQueue::Pages` (r:1 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn service_page_base_completion() -> Weight { + // Proof Size summary in bytes: + // Measured: `109` + // Estimated: `69050` + // Minimum execution time: 6_327_000 picoseconds. + Weight::from_parts(6_537_000, 0) + .saturating_add(Weight::from_parts(0, 69050)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `MessageQueue::Pages` (r:1 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn service_page_base_no_completion() -> Weight { + // Proof Size summary in bytes: + // Measured: `109` + // Estimated: `69050` + // Minimum execution time: 6_616_000 picoseconds. + Weight::from_parts(6_886_000, 0) + .saturating_add(Weight::from_parts(0, 69050)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + fn service_page_item() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 90_907_000 picoseconds. + Weight::from_parts(92_896_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + } + /// Storage: `MessageQueue::ServiceHead` (r:1 w:1) + /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::BookStateFor` (r:1 w:0) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + fn bump_service_head() -> Weight { + // Proof Size summary in bytes: + // Measured: `208` + // Estimated: `3517` + // Minimum execution time: 7_211_000 picoseconds. + Weight::from_parts(7_602_000, 0) + .saturating_add(Weight::from_parts(0, 3517)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::Pages` (r:1 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn reap_page() -> Weight { + // Proof Size summary in bytes: + // Measured: `65704` + // Estimated: `69050` + // Minimum execution time: 54_827_000 picoseconds. + Weight::from_parts(56_091_000, 0) + .saturating_add(Weight::from_parts(0, 69050)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::Pages` (r:1 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn execute_overweight_page_removed() -> Weight { + // Proof Size summary in bytes: + // Measured: `65704` + // Estimated: `69050` + // Minimum execution time: 71_224_000 picoseconds. + Weight::from_parts(72_962_000, 0) + .saturating_add(Weight::from_parts(0, 69050)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) + /// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `MessageQueue::Pages` (r:1 w:1) + /// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`) + fn execute_overweight_page_updated() -> Weight { + // Proof Size summary in bytes: + // Measured: `65704` + // Estimated: `69050` + // Minimum execution time: 111_833_000 picoseconds. + Weight::from_parts(114_628_000, 0) + .saturating_add(Weight::from_parts(0, 69050)) + .saturating_add(T::DbWeight::get().reads(2)) + .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 593731a1..48b745b9 100644 --- a/runtime/trappist/src/weights/pallet_multisig.rs +++ b/runtime/trappist/src/weights/pallet_multisig.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_multisig` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -50,21 +50,16 @@ use core::marker::PhantomData; /// Weight functions for `pallet_multisig`. pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 18_791_000 picoseconds. - Weight::from_parts(19_882_525, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(532, 0).saturating_mul(z.into())) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 12_552_000 picoseconds. + Weight::from_parts(13_378_586, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 4 + .saturating_add(Weight::from_parts(522, 0).saturating_mul(z.into())) } /// Storage: `Multisig::Multisigs` (r:1 w:1) /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(3346), added: 5821, mode: `MaxEncodedLen`) @@ -74,13 +69,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `262 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 39_090_000 picoseconds. - Weight::from_parts(29_743_474, 0) + // Minimum execution time: 37_720_000 picoseconds. + Weight::from_parts(27_811_432, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_065 - .saturating_add(Weight::from_parts(111_104, 0).saturating_mul(s.into())) - // Standard Error: 10 - .saturating_add(Weight::from_parts(1_391, 0).saturating_mul(z.into())) + // Standard Error: 681 + .saturating_add(Weight::from_parts(112_308, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_451, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -92,13 +87,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 26_108_000 picoseconds. - Weight::from_parts(16_951_165, 0) + // Minimum execution time: 25_244_000 picoseconds. + Weight::from_parts(17_187_486, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 633 - .saturating_add(Weight::from_parts(100_263, 0).saturating_mul(s.into())) - // Standard Error: 6 - .saturating_add(Weight::from_parts(1_437, 0).saturating_mul(z.into())) + // Standard Error: 604 + .saturating_add(Weight::from_parts(95_326, 0).saturating_mul(s.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(1_385, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -106,24 +101,20 @@ impl pallet_multisig::WeightInfo for WeightInfo { /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(3346), added: 5821, mode: `MaxEncodedLen`) /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_complete(s: u32, z: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `465 + s * (33 ±0)` + // Measured: `385 + s * (33 ±0)` // Estimated: `6811` - // Minimum execution time: 50_981_000 picoseconds. - Weight::from_parts(38_076_500, 0) + // Minimum execution time: 44_667_000 picoseconds. + Weight::from_parts(32_245_696, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 933 - .saturating_add(Weight::from_parts(144_328, 0).saturating_mul(s.into())) - // Standard Error: 9 - .saturating_add(Weight::from_parts(1_511, 0).saturating_mul(z.into())) - .saturating_add(T::DbWeight::get().reads(4)) + // Standard Error: 761 + .saturating_add(Weight::from_parts(137_762, 0).saturating_mul(s.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(1_509, 0).saturating_mul(z.into())) + .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Multisig::Multisigs` (r:1 w:1) @@ -133,11 +124,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `263 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 27_513_000 picoseconds. - Weight::from_parts(27_777_312, 0) + // Minimum execution time: 26_839_000 picoseconds. + Weight::from_parts(26_862_043, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 827 - .saturating_add(Weight::from_parts(104_571, 0).saturating_mul(s.into())) + // Standard Error: 849 + .saturating_add(Weight::from_parts(109_629, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -148,11 +139,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 15_472_000 picoseconds. - Weight::from_parts(15_851_953, 0) + // Minimum execution time: 15_563_000 picoseconds. + Weight::from_parts(15_505_718, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 731 - .saturating_add(Weight::from_parts(91_578, 0).saturating_mul(s.into())) + // Standard Error: 660 + .saturating_add(Weight::from_parts(93_873, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -163,11 +154,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `454 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 28_751_000 picoseconds. - Weight::from_parts(29_439_803, 0) + // Minimum execution time: 28_477_000 picoseconds. + Weight::from_parts(28_786_927, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 934 - .saturating_add(Weight::from_parts(99_434, 0).saturating_mul(s.into())) + // Standard Error: 800 + .saturating_add(Weight::from_parts(103_542, 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 01a5fe16..c10e16d6 100644 --- a/runtime/trappist/src/weights/pallet_preimage.rs +++ b/runtime/trappist/src/weights/pallet_preimage.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_preimage` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -61,11 +61,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 13_084_000 picoseconds. - Weight::from_parts(9_924_111, 0) + // Minimum execution time: 12_751_000 picoseconds. + Weight::from_parts(12_964_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(2_213, 0).saturating_mul(s.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(2_372, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -80,11 +80,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 14_698_000 picoseconds. - Weight::from_parts(21_696_447, 0) + // Minimum execution time: 14_443_000 picoseconds. + Weight::from_parts(14_925_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(2_214, 0).saturating_mul(s.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(2_353, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -99,11 +99,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 15_137_000 picoseconds. - Weight::from_parts(30_155_541, 0) + // Minimum execution time: 14_719_000 picoseconds. + Weight::from_parts(15_066_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(2_213, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(2_426, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -117,8 +117,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3556` - // Minimum execution time: 20_050_000 picoseconds. - Weight::from_parts(21_388_000, 0) + // Minimum execution time: 21_017_000 picoseconds. + Weight::from_parts(21_940_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -133,8 +133,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 23_094_000 picoseconds. - Weight::from_parts(23_628_000, 0) + // Minimum execution time: 24_027_000 picoseconds. + Weight::from_parts(25_209_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -147,8 +147,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3556` - // Minimum execution time: 18_515_000 picoseconds. - Weight::from_parts(19_419_000, 0) + // Minimum execution time: 18_527_000 picoseconds. + Weight::from_parts(20_057_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -161,8 +161,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 13_953_000 picoseconds. - Weight::from_parts(14_732_000, 0) + // Minimum execution time: 14_764_000 picoseconds. + Weight::from_parts(16_516_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -175,8 +175,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 15_958_000 picoseconds. - Weight::from_parts(16_520_000, 0) + // Minimum execution time: 15_660_000 picoseconds. + Weight::from_parts(16_262_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -189,8 +189,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 10_550_000 picoseconds. - Weight::from_parts(11_040_000, 0) + // Minimum execution time: 10_318_000 picoseconds. + Weight::from_parts(10_677_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -205,8 +205,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 20_733_000 picoseconds. - Weight::from_parts(21_873_000, 0) + // Minimum execution time: 21_827_000 picoseconds. + Weight::from_parts(22_894_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -219,8 +219,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 10_405_000 picoseconds. - Weight::from_parts(10_870_000, 0) + // Minimum execution time: 10_583_000 picoseconds. + Weight::from_parts(11_524_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -233,8 +233,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 10_350_000 picoseconds. - Weight::from_parts(10_697_000, 0) + // Minimum execution time: 10_128_000 picoseconds. + Weight::from_parts(10_623_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -250,11 +250,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + n * (227 ±0)` // Estimated: `990 + n * (2603 ±0)` - // Minimum execution time: 20_586_000 picoseconds. - Weight::from_parts(20_782_000, 0) + // Minimum execution time: 19_818_000 picoseconds. + Weight::from_parts(20_366_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 22_046 - .saturating_add(Weight::from_parts(19_227_568, 0).saturating_mul(n.into())) + // Standard Error: 23_540 + .saturating_add(Weight::from_parts(18_965_597, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into())) diff --git a/runtime/trappist/src/weights/pallet_safe_mode.rs b/runtime/trappist/src/weights/pallet_safe_mode.rs index 89e0d788..0bc91fd4 100644 --- a/runtime/trappist/src/weights/pallet_safe_mode.rs +++ b/runtime/trappist/src/weights/pallet_safe_mode.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_safe_mode` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1489` - // Minimum execution time: 2_807_000 picoseconds. - Weight::from_parts(2_961_000, 0) + // Minimum execution time: 2_847_000 picoseconds. + Weight::from_parts(3_012_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -67,8 +67,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `1489` - // Minimum execution time: 6_620_000 picoseconds. - Weight::from_parts(6_796_000, 0) + // Minimum execution time: 6_567_000 picoseconds. + Weight::from_parts(6_745_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -87,8 +87,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1489` - // Minimum execution time: 7_902_000 picoseconds. - Weight::from_parts(8_194_000, 0) + // Minimum execution time: 7_797_000 picoseconds. + Weight::from_parts(8_097_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -107,8 +107,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `1489` - // Minimum execution time: 7_553_000 picoseconds. - Weight::from_parts(7_840_000, 0) + // Minimum execution time: 7_464_000 picoseconds. + Weight::from_parts(7_842_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -119,8 +119,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `1489` - // Minimum execution time: 8_561_000 picoseconds. - Weight::from_parts(8_813_000, 0) + // Minimum execution time: 8_302_000 picoseconds. + Weight::from_parts(8_639_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -135,8 +135,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `225` // Estimated: `3568` - // Minimum execution time: 36_518_000 picoseconds. - Weight::from_parts(37_350_000, 0) + // Minimum execution time: 35_701_000 picoseconds. + Weight::from_parts(36_316_000, 0) .saturating_add(Weight::from_parts(0, 3568)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -149,8 +149,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `225` // Estimated: `3568` - // Minimum execution time: 35_341_000 picoseconds. - Weight::from_parts(35_736_000, 0) + // Minimum execution time: 35_017_000 picoseconds. + Weight::from_parts(35_664_000, 0) .saturating_add(Weight::from_parts(0, 3568)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -163,8 +163,8 @@ impl pallet_safe_mode::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `225` // Estimated: `3568` - // Minimum execution time: 28_343_000 picoseconds. - Weight::from_parts(28_831_000, 0) + // Minimum execution time: 27_821_000 picoseconds. + Weight::from_parts(28_605_000, 0) .saturating_add(Weight::from_parts(0, 3568)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_scheduler.rs b/runtime/trappist/src/weights/pallet_scheduler.rs index 20c77e93..bc77f287 100644 --- a/runtime/trappist/src/weights/pallet_scheduler.rs +++ b/runtime/trappist/src/weights/pallet_scheduler.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_scheduler` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31` // Estimated: `1489` - // Minimum execution time: 3_434_000 picoseconds. - Weight::from_parts(3_614_000, 0) + // Minimum execution time: 3_615_000 picoseconds. + Weight::from_parts(3_788_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_750_000 picoseconds. - Weight::from_parts(80_822, 0) + // Minimum execution time: 3_921_000 picoseconds. + Weight::from_parts(4_014_000, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_104 - .saturating_add(Weight::from_parts(920_374, 0).saturating_mul(s.into())) + // Standard Error: 1_138 + .saturating_add(Weight::from_parts(909_467, 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: 3_646_000 picoseconds. - Weight::from_parts(3_825_000, 0) + // Minimum execution time: 3_697_000 picoseconds. + Weight::from_parts(3_867_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -96,11 +96,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: 17_861_000 picoseconds. - Weight::from_parts(18_104_000, 0) + // Minimum execution time: 18_092_000 picoseconds. + Weight::from_parts(18_318_000, 0) .saturating_add(Weight::from_parts(0, 3644)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_195, 0).saturating_mul(s.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(1_354, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -111,8 +111,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_984_000 picoseconds. - Weight::from_parts(5_262_000, 0) + // Minimum execution time: 5_081_000 picoseconds. + Weight::from_parts(5_234_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -120,29 +120,24 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_668_000 picoseconds. - Weight::from_parts(3_870_000, 0) + // Minimum execution time: 3_700_000 picoseconds. + Weight::from_parts(3_842_000, 0) .saturating_add(Weight::from_parts(0, 0)) } - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn execute_dispatch_signed() -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 7_450_000 picoseconds. - Weight::from_parts(7_749_000, 0) - .saturating_add(Weight::from_parts(0, 3997)) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 2_479_000 picoseconds. + Weight::from_parts(2_646_000, 0) + .saturating_add(Weight::from_parts(0, 0)) } fn execute_dispatch_unsigned() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_448_000 picoseconds. - Weight::from_parts(2_663_000, 0) + // Minimum execution time: 2_513_000 picoseconds. + Weight::from_parts(2_636_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -152,11 +147,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 10_587_000 picoseconds. - Weight::from_parts(8_092_724, 0) + // Minimum execution time: 10_592_000 picoseconds. + Weight::from_parts(6_258_346, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_218 - .saturating_add(Weight::from_parts(934_689, 0).saturating_mul(s.into())) + // Standard Error: 2_108 + .saturating_add(Weight::from_parts(943_841, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -169,11 +164,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 15_138_000 picoseconds. - Weight::from_parts(5_949_108, 0) + // Minimum execution time: 15_611_000 picoseconds. + Weight::from_parts(4_935_276, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_365 - .saturating_add(Weight::from_parts(1_640_271, 0).saturating_mul(s.into())) + // Standard Error: 2_522 + .saturating_add(Weight::from_parts(1_642_290, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -186,11 +181,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `596 + s * (178 ±0)` // Estimated: `402327` - // Minimum execution time: 13_770_000 picoseconds. - Weight::from_parts(13_100_661, 0) + // Minimum execution time: 13_665_000 picoseconds. + Weight::from_parts(11_772_999, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_154 - .saturating_add(Weight::from_parts(940_206, 0).saturating_mul(s.into())) + // Standard Error: 2_199 + .saturating_add(Weight::from_parts(945_891, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -203,11 +198,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `709 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 16_493_000 picoseconds. - Weight::from_parts(9_442_547, 0) + // Minimum execution time: 16_702_000 picoseconds. + Weight::from_parts(8_324_511, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 2_420 - .saturating_add(Weight::from_parts(1_637_390, 0).saturating_mul(s.into())) + // Standard Error: 2_515 + .saturating_add(Weight::from_parts(1_641_223, 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 f1bcfdbc..f25bac83 100644 --- a/runtime/trappist/src/weights/pallet_session.rs +++ b/runtime/trappist/src/weights/pallet_session.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_session` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,11 +56,11 @@ impl pallet_session::WeightInfo for WeightInfo { /// Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { // Proof Size summary in bytes: - // Measured: `297` - // Estimated: `3762` - // Minimum execution time: 15_328_000 picoseconds. - Weight::from_parts(15_904_000, 0) - .saturating_add(Weight::from_parts(0, 3762)) + // Measured: `298` + // Estimated: `3763` + // Minimum execution time: 15_814_000 picoseconds. + Weight::from_parts(16_197_000, 0) + .saturating_add(Weight::from_parts(0, 3763)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -70,11 +70,11 @@ impl pallet_session::WeightInfo for WeightInfo { /// Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { // Proof Size summary in bytes: - // Measured: `279` - // Estimated: `3744` - // Minimum execution time: 10_698_000 picoseconds. - Weight::from_parts(11_320_000, 0) - .saturating_add(Weight::from_parts(0, 3744)) + // Measured: `280` + // Estimated: `3745` + // Minimum execution time: 11_054_000 picoseconds. + Weight::from_parts(11_534_000, 0) + .saturating_add(Weight::from_parts(0, 3745)) .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 9781aeb3..4fa7986d 100644 --- a/runtime/trappist/src/weights/pallet_timestamp.rs +++ b/runtime/trappist/src/weights/pallet_timestamp.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_timestamp` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -58,8 +58,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `190` // Estimated: `1493` - // Minimum execution time: 7_400_000 picoseconds. - Weight::from_parts(8_027_000, 0) + // Minimum execution time: 7_367_000 picoseconds. + Weight::from_parts(7_723_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_069_000 picoseconds. - Weight::from_parts(4_353_000, 0) + // Minimum execution time: 4_234_000 picoseconds. + Weight::from_parts(4_531_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 f4dd65f1..b30ea36b 100644 --- a/runtime/trappist/src/weights/pallet_treasury.rs +++ b/runtime/trappist/src/weights/pallet_treasury.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_treasury` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -60,8 +60,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6` // Estimated: `1887` - // Minimum execution time: 10_732_000 picoseconds. - Weight::from_parts(11_145_000, 0) + // Minimum execution time: 11_120_000 picoseconds. + Weight::from_parts(11_489_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -74,8 +74,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `107` // Estimated: `1489` - // Minimum execution time: 22_393_000 picoseconds. - Weight::from_parts(23_055_000, 0) + // Minimum execution time: 22_640_000 picoseconds. + Weight::from_parts(23_156_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -88,8 +88,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `368` // Estimated: `6196` - // Minimum execution time: 35_401_000 picoseconds. - Weight::from_parts(36_511_000, 0) + // Minimum execution time: 35_242_000 picoseconds. + Weight::from_parts(35_982_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -103,11 +103,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `433 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 7_862_000 picoseconds. - Weight::from_parts(10_537_754, 0) + // Minimum execution time: 8_131_000 picoseconds. + Weight::from_parts(10_620_518, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_452 - .saturating_add(Weight::from_parts(74_665, 0).saturating_mul(p.into())) + // Standard Error: 1_300 + .saturating_add(Weight::from_parts(69_848, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -117,8 +117,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `90` // Estimated: `1887` - // Minimum execution time: 6_250_000 picoseconds. - Weight::from_parts(6_519_000, 0) + // Minimum execution time: 6_458_000 picoseconds. + Weight::from_parts(6_682_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -137,12 +137,12 @@ impl pallet_treasury::WeightInfo for WeightInfo { fn on_initialize_proposals(p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `955 + p * (210 ±0)` - // Estimated: `66239 + p * (2598 ±58)` - // Minimum execution time: 18_025_000 picoseconds. - Weight::from_parts(364_461_614, 0) + // Estimated: `66239 + p * (2598 ±0)` + // Minimum execution time: 18_214_000 picoseconds. + Weight::from_parts(346_816_990, 0) .saturating_add(Weight::from_parts(0, 66239)) - // Standard Error: 322_940 - .saturating_add(Weight::from_parts(18_110_292, 0).saturating_mul(p.into())) + // Standard Error: 506_611 + .saturating_add(Weight::from_parts(18_911_421, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(28)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(40)) @@ -157,8 +157,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6` // Estimated: `1489` - // Minimum execution time: 9_856_000 picoseconds. - Weight::from_parts(10_168_000, 0) + // Minimum execution time: 9_954_000 picoseconds. + Weight::from_parts(10_430_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -171,8 +171,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `330` // Estimated: `6196` - // Minimum execution time: 45_729_000 picoseconds. - Weight::from_parts(46_571_000, 0) + // Minimum execution time: 46_117_000 picoseconds. + Weight::from_parts(47_120_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -183,8 +183,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `124` // Estimated: `3534` - // Minimum execution time: 11_330_000 picoseconds. - Weight::from_parts(11_867_000, 0) + // Minimum execution time: 11_705_000 picoseconds. + Weight::from_parts(11_983_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -195,8 +195,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `124` // Estimated: `3534` - // Minimum execution time: 10_753_000 picoseconds. - Weight::from_parts(11_092_000, 0) + // Minimum execution time: 11_051_000 picoseconds. + Weight::from_parts(11_463_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_tx_pause.rs b/runtime/trappist/src/weights/pallet_tx_pause.rs index 4ba4e9f9..180f4b02 100644 --- a/runtime/trappist/src/weights/pallet_tx_pause.rs +++ b/runtime/trappist/src/weights/pallet_tx_pause.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_tx_pause` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_tx_pause::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 12_195_000 picoseconds. - Weight::from_parts(12_759_000, 0) + // Minimum execution time: 12_239_000 picoseconds. + Weight::from_parts(12_706_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_tx_pause::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `566` // Estimated: `3997` - // Minimum execution time: 17_950_000 picoseconds. - Weight::from_parts(18_437_000, 0) + // Minimum execution time: 18_008_000 picoseconds. + Weight::from_parts(18_561_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_uniques.rs b/runtime/trappist/src/weights/pallet_uniques.rs index bc296ff8..faffd3b4 100644 --- a/runtime/trappist/src/weights/pallet_uniques.rs +++ b/runtime/trappist/src/weights/pallet_uniques.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_uniques` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -58,8 +58,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179` // Estimated: `3643` - // Minimum execution time: 24_452_000 picoseconds. - Weight::from_parts(25_444_000, 0) + // Minimum execution time: 24_569_000 picoseconds. + Weight::from_parts(25_540_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: 12_479_000 picoseconds. - Weight::from_parts(12_794_000, 0) + // Minimum execution time: 12_477_000 picoseconds. + Weight::from_parts(12_733_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_701_979_000 picoseconds. - Weight::from_parts(2_714_081_000, 0) + // Minimum execution time: 2_668_359_000 picoseconds. + Weight::from_parts(2_687_086_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 26_585 - .saturating_add(Weight::from_parts(6_894_831, 0).saturating_mul(n.into())) - // Standard Error: 26_585 - .saturating_add(Weight::from_parts(312_015, 0).saturating_mul(m.into())) - // Standard Error: 26_585 - .saturating_add(Weight::from_parts(343_749, 0).saturating_mul(a.into())) + // Standard Error: 27_149 + .saturating_add(Weight::from_parts(6_852_579, 0).saturating_mul(n.into())) + // Standard Error: 27_149 + .saturating_add(Weight::from_parts(311_677, 0).saturating_mul(m.into())) + // Standard Error: 27_149 + .saturating_add(Weight::from_parts(350_332, 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: 30_004_000 picoseconds. - Weight::from_parts(30_896_000, 0) + // Minimum execution time: 29_883_000 picoseconds. + Weight::from_parts(30_713_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: 32_116_000 picoseconds. - Weight::from_parts(32_785_000, 0) + // Minimum execution time: 32_059_000 picoseconds. + Weight::from_parts(32_666_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: 23_690_000 picoseconds. - Weight::from_parts(24_072_000, 0) + // Minimum execution time: 23_305_000 picoseconds. + Weight::from_parts(23_923_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: 11_310_000 picoseconds. - Weight::from_parts(11_591_000, 0) + // Minimum execution time: 11_334_000 picoseconds. + Weight::from_parts(11_572_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 12_686 - .saturating_add(Weight::from_parts(14_924_271, 0).saturating_mul(i.into())) + // Standard Error: 14_178 + .saturating_add(Weight::from_parts(14_757_675, 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: 15_153_000 picoseconds. - Weight::from_parts(15_639_000, 0) + // Minimum execution time: 15_090_000 picoseconds. + Weight::from_parts(15_541_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: 15_070_000 picoseconds. - Weight::from_parts(15_590_000, 0) + // Minimum execution time: 14_980_000 picoseconds. + Weight::from_parts(15_348_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: 10_192_000 picoseconds. - Weight::from_parts(10_556_000, 0) + // Minimum execution time: 10_187_000 picoseconds. + Weight::from_parts(10_582_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: 10_116_000 picoseconds. - Weight::from_parts(10_344_000, 0) + // Minimum execution time: 10_069_000 picoseconds. + Weight::from_parts(10_513_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: 18_068_000 picoseconds. - Weight::from_parts(18_740_000, 0) + // Minimum execution time: 18_583_000 picoseconds. + Weight::from_parts(19_118_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: 10_484_000 picoseconds. - Weight::from_parts(10_857_000, 0) + // Minimum execution time: 10_693_000 picoseconds. + Weight::from_parts(11_114_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: 13_435_000 picoseconds. - Weight::from_parts(13_794_000, 0) + // Minimum execution time: 13_549_000 picoseconds. + Weight::from_parts(14_115_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: 33_448_000 picoseconds. - Weight::from_parts(34_152_000, 0) + // Minimum execution time: 33_240_000 picoseconds. + Weight::from_parts(33_806_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: 32_332_000 picoseconds. - Weight::from_parts(32_806_000, 0) + // Minimum execution time: 31_910_000 picoseconds. + Weight::from_parts(32_680_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: 24_270_000 picoseconds. - Weight::from_parts(24_995_000, 0) + // Minimum execution time: 24_238_000 picoseconds. + Weight::from_parts(25_024_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: 25_319_000 picoseconds. - Weight::from_parts(26_189_000, 0) + // Minimum execution time: 25_323_000 picoseconds. + Weight::from_parts(26_013_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: 25_225_000 picoseconds. - Weight::from_parts(25_676_000, 0) + // Minimum execution time: 25_103_000 picoseconds. + Weight::from_parts(25_648_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: 24_380_000 picoseconds. - Weight::from_parts(24_832_000, 0) + // Minimum execution time: 24_378_000 picoseconds. + Weight::from_parts(24_938_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: 15_744_000 picoseconds. - Weight::from_parts(16_087_000, 0) + // Minimum execution time: 15_749_000 picoseconds. + Weight::from_parts(16_162_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: 15_892_000 picoseconds. - Weight::from_parts(16_214_000, 0) + // Minimum execution time: 15_585_000 picoseconds. + Weight::from_parts(16_180_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: 11_653_000 picoseconds. - Weight::from_parts(11_883_000, 0) + // Minimum execution time: 11_480_000 picoseconds. + Weight::from_parts(11_913_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: 12_840_000 picoseconds. - Weight::from_parts(13_261_000, 0) + // Minimum execution time: 12_705_000 picoseconds. + Weight::from_parts(13_029_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: 12_925_000 picoseconds. - Weight::from_parts(13_369_000, 0) + // Minimum execution time: 13_001_000 picoseconds. + Weight::from_parts(13_248_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: 30_424_000 picoseconds. - Weight::from_parts(31_016_000, 0) + // Minimum execution time: 29_950_000 picoseconds. + Weight::from_parts(30_760_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 97e6501a..e8d0238a 100644 --- a/runtime/trappist/src/weights/pallet_utility.rs +++ b/runtime/trappist/src/weights/pallet_utility.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_utility` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -50,73 +50,53 @@ use core::marker::PhantomData; /// Weight functions for `pallet_utility`. pub struct WeightInfo(PhantomData); impl pallet_utility::WeightInfo for WeightInfo { - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `c` is `[0, 1000]`. fn batch(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 4_713_000 picoseconds. - Weight::from_parts(8_084_038, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 2_930 - .saturating_add(Weight::from_parts(5_331_266, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 4_465_000 picoseconds. + Weight::from_parts(6_596_364, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 3_845 + .saturating_add(Weight::from_parts(3_648_493, 0).saturating_mul(c.into())) } - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn as_derivative() -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 9_800_000 picoseconds. - Weight::from_parts(10_213_000, 0) - .saturating_add(Weight::from_parts(0, 3997)) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 4_302_000 picoseconds. + Weight::from_parts(4_529_000, 0) + .saturating_add(Weight::from_parts(0, 0)) } - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `c` is `[0, 1000]`. fn batch_all(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 4_673_000 picoseconds. - Weight::from_parts(18_526_744, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 4_177 - .saturating_add(Weight::from_parts(5_557_556, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 4_262_000 picoseconds. + Weight::from_parts(11_425_884, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 3_500 + .saturating_add(Weight::from_parts(3_887_921, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_886_000 picoseconds. - Weight::from_parts(7_335_000, 0) + // Minimum execution time: 6_425_000 picoseconds. + Weight::from_parts(6_820_000, 0) .saturating_add(Weight::from_parts(0, 0)) } - /// Storage: `TxPause::PausedCalls` (r:1 w:0) - /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) - /// Storage: `SafeMode::EnteredUntil` (r:1 w:0) - /// Proof: `SafeMode::EnteredUntil` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// The range of component `c` is `[0, 1000]`. fn force_batch(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `80` - // Estimated: `3997` - // Minimum execution time: 4_679_000 picoseconds. - Weight::from_parts(16_530_932, 0) - .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 3_809 - .saturating_add(Weight::from_parts(5_314_037, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 4_372_000 picoseconds. + Weight::from_parts(14_534_844, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 3_592 + .saturating_add(Weight::from_parts(3_622_262, 0).saturating_mul(c.into())) } } diff --git a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs index 987a82ec..be218021 100644 --- a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs +++ b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_withdraw_teleport` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -66,8 +66,8 @@ impl pallet_withdraw_teleport::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `143` // Estimated: `3608` - // Minimum execution time: 74_406_000 picoseconds. - Weight::from_parts(75_482_000, 0) + // Minimum execution time: 73_799_000 picoseconds. + Weight::from_parts(75_761_000, 0) .saturating_add(Weight::from_parts(0, 3608)) .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 cdb0deb6..2988b51a 100644 --- a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs +++ b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `trappist_runtime_benchmarks` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: @@ -58,8 +58,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `131` // Estimated: `4087` - // Minimum execution time: 8_125_000 picoseconds. - Weight::from_parts(8_397_000, 0) + // Minimum execution time: 8_160_000 picoseconds. + Weight::from_parts(8_405_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_280_000 picoseconds. - Weight::from_parts(4_451_000, 0) + // Minimum execution time: 4_275_000 picoseconds. + Weight::from_parts(4_453_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: 876_000 picoseconds. - Weight::from_parts(929_000, 0) + // Minimum execution time: 865_000 picoseconds. + Weight::from_parts(925_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 d58f6681..0ba1be90 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs @@ -17,10 +17,10 @@ //! Autogenerated weights for `pallet_xcm_benchmarks::fungible` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0 -//! DATE: 2023-12-21, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2024-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-q7z7ruxr-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-bn-ce5rx-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("trappist-dev"), DB CACHE: 1024 // Executed Command: @@ -57,8 +57,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3593` - // Minimum execution time: 22_452_000 picoseconds. - Weight::from_parts(22_923_000, 3593) + // Minimum execution time: 21_815_000 picoseconds. + Weight::from_parts(22_535_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: 45_506_000 picoseconds. - Weight::from_parts(46_096_000, 6196) + // Minimum execution time: 43_111_000 picoseconds. + Weight::from_parts(44_103_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: `244` // Estimated: `6196` - // Minimum execution time: 62_353_000 picoseconds. - Weight::from_parts(63_243_000, 6196) + // Minimum execution time: 59_686_000 picoseconds. + Weight::from_parts(60_893_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: `143` // Estimated: `3608` - // Minimum execution time: 151_148_000 picoseconds. - Weight::from_parts(160_741_000, 3608) + // Minimum execution time: 146_662_000 picoseconds. + Weight::from_parts(158_384_000, 3608) .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: 6_945_000 picoseconds. - Weight::from_parts(7_166_000, 4087) + // Minimum execution time: 6_838_000 picoseconds. + Weight::from_parts(7_125_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: 19_686_000 picoseconds. - Weight::from_parts(20_306_000, 3593) + // Minimum execution time: 19_103_000 picoseconds. + Weight::from_parts(19_581_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: `143` // Estimated: `3608` - // Minimum execution time: 41_713_000 picoseconds. - Weight::from_parts(43_259_000, 3608) + // Minimum execution time: 40_875_000 picoseconds. + Weight::from_parts(42_039_000, 3608) .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: `185` // Estimated: `4087` - // Minimum execution time: 30_626_000 picoseconds. - Weight::from_parts(31_631_000, 4087) + // Minimum execution time: 29_800_000 picoseconds. + Weight::from_parts(30_636_000, 4087) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) }