From 921b8aa50b7b81530b139bcb54dabe92c70d2840 Mon Sep 17 00:00:00 2001 From: Malte Kliemann Date: Tue, 27 Aug 2024 19:41:16 +0200 Subject: [PATCH 1/2] Bump versions --- Cargo.lock | 40 +++++++++---------- macros/Cargo.toml | 2 +- node/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- runtime/battery-station/Cargo.toml | 2 +- runtime/battery-station/src/lib.rs | 4 +- runtime/common/Cargo.toml | 2 +- runtime/zeitgeist/Cargo.toml | 2 +- runtime/zeitgeist/src/lib.rs | 4 +- zrml/authorized/Cargo.toml | 2 +- zrml/court/Cargo.toml | 2 +- zrml/global-disputes/Cargo.toml | 2 +- zrml/hybrid-router/Cargo.toml | 2 +- zrml/market-commons/Cargo.toml | 2 +- zrml/neo-swaps/Cargo.toml | 2 +- zrml/orderbook/Cargo.toml | 2 +- zrml/parimutuel/Cargo.toml | 2 +- zrml/prediction-markets/Cargo.toml | 2 +- .../prediction-markets/runtime-api/Cargo.toml | 2 +- zrml/styx/Cargo.toml | 2 +- zrml/swaps/Cargo.toml | 2 +- zrml/swaps/rpc/Cargo.toml | 2 +- zrml/swaps/runtime-api/Cargo.toml | 2 +- 23 files changed, 44 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0503f3964..5328917c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -788,7 +788,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "battery-station-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "common-runtime", @@ -1445,7 +1445,7 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "common-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "cumulus-pallet-xcmp-queue", @@ -14828,11 +14828,11 @@ dependencies = [ [[package]] name = "zeitgeist-macros" -version = "0.5.4" +version = "0.5.5" [[package]] name = "zeitgeist-node" -version = "0.5.4" +version = "0.5.5" dependencies = [ "battery-station-runtime", "cfg-if", @@ -14925,7 +14925,7 @@ dependencies = [ [[package]] name = "zeitgeist-primitives" -version = "0.5.4" +version = "0.5.5" dependencies = [ "arbitrary", "fixed", @@ -14948,7 +14948,7 @@ dependencies = [ [[package]] name = "zeitgeist-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "common-runtime", @@ -15094,7 +15094,7 @@ dependencies = [ [[package]] name = "zrml-authorized" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15112,7 +15112,7 @@ dependencies = [ [[package]] name = "zrml-court" -version = "0.5.4" +version = "0.5.5" dependencies = [ "arrayvec 0.7.4", "env_logger 0.10.2", @@ -15139,7 +15139,7 @@ dependencies = [ [[package]] name = "zrml-global-disputes" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15161,7 +15161,7 @@ dependencies = [ [[package]] name = "zrml-hybrid-router" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15198,7 +15198,7 @@ dependencies = [ [[package]] name = "zrml-market-commons" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-support", @@ -15217,7 +15217,7 @@ dependencies = [ [[package]] name = "zrml-neo-swaps" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15259,7 +15259,7 @@ dependencies = [ [[package]] name = "zrml-orderbook" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15294,7 +15294,7 @@ dependencies = [ [[package]] name = "zrml-parimutuel" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15317,7 +15317,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15366,7 +15366,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets-runtime-api" -version = "0.5.4" +version = "0.5.5" dependencies = [ "parity-scale-codec", "sp-api", @@ -15375,7 +15375,7 @@ dependencies = [ [[package]] name = "zrml-styx" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15392,7 +15392,7 @@ dependencies = [ [[package]] name = "zrml-swaps" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15435,7 +15435,7 @@ dependencies = [ [[package]] name = "zrml-swaps-rpc" -version = "0.5.4" +version = "0.5.5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -15448,7 +15448,7 @@ dependencies = [ [[package]] name = "zrml-swaps-runtime-api" -version = "0.5.4" +version = "0.5.5" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1c027dc28..97e00179a 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -2,4 +2,4 @@ authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-macros" -version = "0.5.4" +version = "0.5.5" diff --git a/node/Cargo.toml b/node/Cargo.toml index b911d08c9..9686b72ef 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -187,7 +187,7 @@ description = "An evolving blockchain for prediction markets and futarchy." edition.workspace = true homepage = "https://zeitgeist.pm" name = "zeitgeist-node" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 22ac5af58..5392cac2d 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -39,4 +39,4 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-primitives" -version = "0.5.4" +version = "0.5.5" diff --git a/runtime/battery-station/Cargo.toml b/runtime/battery-station/Cargo.toml index 7c29b4294..3e1bf7035 100644 --- a/runtime/battery-station/Cargo.toml +++ b/runtime/battery-station/Cargo.toml @@ -419,7 +419,7 @@ force-debug = ["sp-debug-derive/force-debug"] authors = ["Zeitgeist PM "] edition.workspace = true name = "battery-station-runtime" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/battery-station/src/lib.rs b/runtime/battery-station/src/lib.rs index 1dc0bb727..4939109db 100644 --- a/runtime/battery-station/src/lib.rs +++ b/runtime/battery-station/src/lib.rs @@ -97,10 +97,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 57, + spec_version: 58, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 30, + transaction_version: 31, state_version: 1, }; diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 3fe9127ab..821350940 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -80,7 +80,7 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "common-runtime" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/Cargo.toml b/runtime/zeitgeist/Cargo.toml index 923a11fec..a8a6ccc02 100644 --- a/runtime/zeitgeist/Cargo.toml +++ b/runtime/zeitgeist/Cargo.toml @@ -409,7 +409,7 @@ force-debug = ["sp-debug-derive/force-debug"] authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-runtime" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/src/lib.rs b/runtime/zeitgeist/src/lib.rs index 401a5872c..129f55058 100644 --- a/runtime/zeitgeist/src/lib.rs +++ b/runtime/zeitgeist/src/lib.rs @@ -87,10 +87,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 57, + spec_version: 58, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 30, + transaction_version: 31, state_version: 1, }; diff --git a/zrml/authorized/Cargo.toml b/zrml/authorized/Cargo.toml index 0f11e94b7..4c3cb2193 100644 --- a/zrml/authorized/Cargo.toml +++ b/zrml/authorized/Cargo.toml @@ -39,4 +39,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-authorized" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/court/Cargo.toml b/zrml/court/Cargo.toml index 976d542c2..94fb309e9 100644 --- a/zrml/court/Cargo.toml +++ b/zrml/court/Cargo.toml @@ -49,4 +49,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-court" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/global-disputes/Cargo.toml b/zrml/global-disputes/Cargo.toml index bcbfbe30c..bc425b010 100644 --- a/zrml/global-disputes/Cargo.toml +++ b/zrml/global-disputes/Cargo.toml @@ -47,4 +47,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-global-disputes" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/hybrid-router/Cargo.toml b/zrml/hybrid-router/Cargo.toml index 269e1f09a..a3a836c04 100644 --- a/zrml/hybrid-router/Cargo.toml +++ b/zrml/hybrid-router/Cargo.toml @@ -90,4 +90,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-hybrid-router" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/market-commons/Cargo.toml b/zrml/market-commons/Cargo.toml index a0573f038..0d4b252f0 100644 --- a/zrml/market-commons/Cargo.toml +++ b/zrml/market-commons/Cargo.toml @@ -34,4 +34,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-market-commons" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/neo-swaps/Cargo.toml b/zrml/neo-swaps/Cargo.toml index 23f1501f5..3c74b4f31 100644 --- a/zrml/neo-swaps/Cargo.toml +++ b/zrml/neo-swaps/Cargo.toml @@ -99,4 +99,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-neo-swaps" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/orderbook/Cargo.toml b/zrml/orderbook/Cargo.toml index 4a8f1ed0d..7b53c388a 100644 --- a/zrml/orderbook/Cargo.toml +++ b/zrml/orderbook/Cargo.toml @@ -57,4 +57,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-orderbook" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/parimutuel/Cargo.toml b/zrml/parimutuel/Cargo.toml index 66d2538cf..1b4e69e9a 100644 --- a/zrml/parimutuel/Cargo.toml +++ b/zrml/parimutuel/Cargo.toml @@ -46,4 +46,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-parimutuel" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/prediction-markets/Cargo.toml b/zrml/prediction-markets/Cargo.toml index 2d4fb53e4..5c35ab2b8 100644 --- a/zrml/prediction-markets/Cargo.toml +++ b/zrml/prediction-markets/Cargo.toml @@ -92,4 +92,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-prediction-markets" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/prediction-markets/runtime-api/Cargo.toml b/zrml/prediction-markets/runtime-api/Cargo.toml index 06a63f286..010cf04e6 100644 --- a/zrml/prediction-markets/runtime-api/Cargo.toml +++ b/zrml/prediction-markets/runtime-api/Cargo.toml @@ -15,4 +15,4 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-prediction-markets-runtime-api" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/styx/Cargo.toml b/zrml/styx/Cargo.toml index 0b8a4460d..a0a46f471 100644 --- a/zrml/styx/Cargo.toml +++ b/zrml/styx/Cargo.toml @@ -37,4 +37,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-styx" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/Cargo.toml b/zrml/swaps/Cargo.toml index fdc1159ec..f8f1bc3e3 100644 --- a/zrml/swaps/Cargo.toml +++ b/zrml/swaps/Cargo.toml @@ -65,4 +65,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-swaps" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/rpc/Cargo.toml b/zrml/swaps/rpc/Cargo.toml index ed71f30be..2b0a04db5 100644 --- a/zrml/swaps/rpc/Cargo.toml +++ b/zrml/swaps/rpc/Cargo.toml @@ -11,4 +11,4 @@ zrml-swaps-runtime-api = { workspace = true, features = ["default"] } authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-swaps-rpc" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/runtime-api/Cargo.toml b/zrml/swaps/runtime-api/Cargo.toml index fa689b5fc..819838918 100644 --- a/zrml/swaps/runtime-api/Cargo.toml +++ b/zrml/swaps/runtime-api/Cargo.toml @@ -18,4 +18,4 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-swaps-runtime-api" -version = "0.5.4" +version = "0.5.5" From 649dc08829653b886a6f7935d842e9ad83473c53 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 28 Aug 2024 16:07:38 +0000 Subject: [PATCH 2/2] Run benchmarks --- .../src/weights/cumulus_pallet_xcmp_queue.rs | 10 +- runtime/common/src/weights/frame_system.rs | 50 +- runtime/common/src/weights/orml_currencies.rs | 22 +- runtime/common/src/weights/orml_tokens.rs | 22 +- .../src/weights/pallet_author_inherent.rs | 6 +- .../src/weights/pallet_author_mapping.rs | 22 +- .../src/weights/pallet_author_slot_filter.rs | 6 +- runtime/common/src/weights/pallet_balances.rs | 38 +- runtime/common/src/weights/pallet_bounties.rs | 54 +- .../common/src/weights/pallet_collective.rs | 126 ++-- .../common/src/weights/pallet_contracts.rs | 614 +++++++++--------- .../common/src/weights/pallet_democracy.rs | 144 ++-- runtime/common/src/weights/pallet_identity.rs | 162 ++--- .../common/src/weights/pallet_membership.rs | 59 +- runtime/common/src/weights/pallet_multisig.rs | 68 +- .../src/weights/pallet_parachain_staking.rs | 264 ++++---- runtime/common/src/weights/pallet_preimage.rs | 62 +- runtime/common/src/weights/pallet_proxy.rs | 98 +-- .../common/src/weights/pallet_scheduler.rs | 74 +-- .../common/src/weights/pallet_timestamp.rs | 10 +- runtime/common/src/weights/pallet_treasury.rs | 34 +- runtime/common/src/weights/pallet_utility.rs | 34 +- runtime/common/src/weights/pallet_vesting.rs | 98 +-- zrml/authorized/src/weights.rs | 42 +- zrml/court/src/weights.rs | 154 ++--- zrml/global-disputes/src/weights.rs | 74 +-- zrml/hybrid-router/src/weights.rs | 28 +- zrml/neo-swaps/src/weights.rs | 62 +- zrml/orderbook/src/weights.rs | 14 +- zrml/parimutuel/src/weights.rs | 14 +- zrml/prediction-markets/src/weights.rs | 274 ++++---- zrml/styx/src/weights.rs | 10 +- zrml/swaps/src/weights.rs | 66 +- 33 files changed, 1404 insertions(+), 1411 deletions(-) diff --git a/runtime/common/src/weights/cumulus_pallet_xcmp_queue.rs b/runtime/common/src/weights/cumulus_pallet_xcmp_queue.rs index 7bfde865f..ceb4fae71 100644 --- a/runtime/common/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/common/src/weights/cumulus_pallet_xcmp_queue.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for cumulus_pallet_xcmp_queue //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -58,8 +58,8 @@ impl cumulus_pallet_xcmp_queue::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `142` // Estimated: `1627` - // Minimum execution time: 6_010 nanoseconds. - Weight::from_parts(6_380_000, 1627) + // Minimum execution time: 6_180 nanoseconds. + Weight::from_parts(6_470_000, 1627) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -69,8 +69,8 @@ impl cumulus_pallet_xcmp_queue::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `142` // Estimated: `1627` - // Minimum execution time: 6_030 nanoseconds. - Weight::from_parts(6_470_000, 1627) + // Minimum execution time: 6_010 nanoseconds. + Weight::from_parts(6_460_000, 1627) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/frame_system.rs b/runtime/common/src/weights/frame_system.rs index 1860b8b66..247ecc01f 100644 --- a/runtime/common/src/weights/frame_system.rs +++ b/runtime/common/src/weights/frame_system.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for frame_system //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -57,20 +57,20 @@ impl frame_system::weights::WeightInfo for WeightInfo Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_210 nanoseconds. - Weight::from_parts(9_490_000, 0) - // Standard Error: 0 - .saturating_add(Weight::from_parts(1_465, 0).saturating_mul(b.into())) + // Minimum execution time: 8_740 nanoseconds. + Weight::from_parts(9_051_000, 0) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_499, 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::weights::WeightInfo for WeightInfo frame_system::weights::WeightInfo for WeightInfo frame_system::weights::WeightInfo for WeightInfo frame_system::weights::WeightInfo for WeightInfo frame_system::weights::WeightInfo for WeightInfo orml_currencies::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1690` // Estimated: `6186` - // Minimum execution time: 61_412 nanoseconds. - Weight::from_parts(62_841_000, 6186) + // Minimum execution time: 59_341 nanoseconds. + Weight::from_parts(61_221_000, 6186) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -68,8 +68,8 @@ impl orml_currencies::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1545` // Estimated: `3597` - // Minimum execution time: 80_292 nanoseconds. - Weight::from_parts(82_013_000, 3597) + // Minimum execution time: 80_182 nanoseconds. + Weight::from_parts(81_461_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -83,8 +83,8 @@ impl orml_currencies::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1361` // Estimated: `3597` - // Minimum execution time: 42_011 nanoseconds. - Weight::from_parts(43_991_000, 3597) + // Minimum execution time: 41_081 nanoseconds. + Weight::from_parts(41_731_000, 3597) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -94,8 +94,8 @@ impl orml_currencies::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1401` // Estimated: `3597` - // Minimum execution time: 44_241 nanoseconds. - Weight::from_parts(45_551_000, 3597) + // Minimum execution time: 44_021 nanoseconds. + Weight::from_parts(45_391_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -105,8 +105,8 @@ impl orml_currencies::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1493` // Estimated: `3597` - // Minimum execution time: 43_711 nanoseconds. - Weight::from_parts(45_811_000, 3597) + // Minimum execution time: 43_561 nanoseconds. + Weight::from_parts(44_551_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/orml_tokens.rs b/runtime/common/src/weights/orml_tokens.rs index 3edc5f066..69cd43883 100644 --- a/runtime/common/src/weights/orml_tokens.rs +++ b/runtime/common/src/weights/orml_tokens.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_tokens //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -57,8 +57,8 @@ impl orml_tokens::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1690` // Estimated: `6186` - // Minimum execution time: 59_671 nanoseconds. - Weight::from_parts(62_941_000, 6186) + // Minimum execution time: 61_401 nanoseconds. + Weight::from_parts(62_241_000, 6186) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -70,8 +70,8 @@ impl orml_tokens::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1690` // Estimated: `6186` - // Minimum execution time: 62_761 nanoseconds. - Weight::from_parts(65_832_000, 6186) + // Minimum execution time: 63_222 nanoseconds. + Weight::from_parts(64_802_000, 6186) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -83,8 +83,8 @@ impl orml_tokens::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1546` // Estimated: `6186` - // Minimum execution time: 48_501 nanoseconds. - Weight::from_parts(49_431_000, 6186) + // Minimum execution time: 49_231 nanoseconds. + Weight::from_parts(50_941_000, 6186) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -96,8 +96,8 @@ impl orml_tokens::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1690` // Estimated: `6204` - // Minimum execution time: 54_231 nanoseconds. - Weight::from_parts(55_211_000, 6204) + // Minimum execution time: 54_591 nanoseconds. + Weight::from_parts(56_472_000, 6204) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -111,8 +111,8 @@ impl orml_tokens::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1361` // Estimated: `3597` - // Minimum execution time: 39_901 nanoseconds. - Weight::from_parts(40_681_000, 3597) + // Minimum execution time: 41_031 nanoseconds. + Weight::from_parts(42_401_000, 3597) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/runtime/common/src/weights/pallet_author_inherent.rs b/runtime/common/src/weights/pallet_author_inherent.rs index 7fc78c9b4..708789264 100644 --- a/runtime/common/src/weights/pallet_author_inherent.rs +++ b/runtime/common/src/weights/pallet_author_inherent.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_author_inherent //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -68,8 +68,8 @@ impl pallet_author_inherent::weights::WeightInfo for We // Proof Size summary in bytes: // Measured: `508` // Estimated: `4079` - // Minimum execution time: 25_401 nanoseconds. - Weight::from_parts(26_561_000, 4079) + // Minimum execution time: 25_151 nanoseconds. + Weight::from_parts(25_800_000, 4079) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_author_mapping.rs b/runtime/common/src/weights/pallet_author_mapping.rs index 01443839b..1e3a3ef9a 100644 --- a/runtime/common/src/weights/pallet_author_mapping.rs +++ b/runtime/common/src/weights/pallet_author_mapping.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_author_mapping //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -62,8 +62,8 @@ impl pallet_author_mapping::weights::WeightInfo for Wei // Proof Size summary in bytes: // Measured: `430` // Estimated: `3895` - // Minimum execution time: 35_151 nanoseconds. - Weight::from_parts(36_551_000, 3895) + // Minimum execution time: 34_711 nanoseconds. + Weight::from_parts(35_821_000, 3895) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -75,8 +75,8 @@ impl pallet_author_mapping::weights::WeightInfo for Wei // Proof Size summary in bytes: // Measured: `375` // Estimated: `6315` - // Minimum execution time: 23_010 nanoseconds. - Weight::from_parts(23_720_000, 6315) + // Minimum execution time: 22_771 nanoseconds. + Weight::from_parts(23_611_000, 6315) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -90,8 +90,8 @@ impl pallet_author_mapping::weights::WeightInfo for Wei // Proof Size summary in bytes: // Measured: `519` // Estimated: `3984` - // Minimum execution time: 36_741 nanoseconds. - Weight::from_parts(37_711_000, 3984) + // Minimum execution time: 36_511 nanoseconds. + Weight::from_parts(37_571_000, 3984) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -105,8 +105,8 @@ impl pallet_author_mapping::weights::WeightInfo for Wei // Proof Size summary in bytes: // Measured: `625` // Estimated: `4090` - // Minimum execution time: 43_711 nanoseconds. - Weight::from_parts(44_612_000, 4090) + // Minimum execution time: 42_761 nanoseconds. + Weight::from_parts(43_901_000, 4090) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -120,8 +120,8 @@ impl pallet_author_mapping::weights::WeightInfo for Wei // Proof Size summary in bytes: // Measured: `498` // Estimated: `3963` - // Minimum execution time: 38_671 nanoseconds. - Weight::from_parts(40_891_000, 3963) + // Minimum execution time: 37_770 nanoseconds. + Weight::from_parts(39_290_000, 3963) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/runtime/common/src/weights/pallet_author_slot_filter.rs b/runtime/common/src/weights/pallet_author_slot_filter.rs index 8abf78431..692dc3e79 100644 --- a/runtime/common/src/weights/pallet_author_slot_filter.rs +++ b/runtime/common/src/weights/pallet_author_slot_filter.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_author_slot_filter //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -58,7 +58,7 @@ impl pallet_author_slot_filter::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 8_251 nanoseconds. - Weight::from_parts(8_981_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 8_040 nanoseconds. + Weight::from_parts(8_580_000, 0).saturating_add(T::DbWeight::get().writes(1)) } } diff --git a/runtime/common/src/weights/pallet_balances.rs b/runtime/common/src/weights/pallet_balances.rs index 402c339da..e36ba5f44 100644 --- a/runtime/common/src/weights/pallet_balances.rs +++ b/runtime/common/src/weights/pallet_balances.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_balances //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -58,8 +58,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `144` // Estimated: `6204` - // Minimum execution time: 83_102 nanoseconds. - Weight::from_parts(84_472_000, 6204) + // Minimum execution time: 86_222 nanoseconds. + Weight::from_parts(87_802_000, 6204) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -69,8 +69,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `0` // Estimated: `3597` - // Minimum execution time: 50_122 nanoseconds. - Weight::from_parts(51_091_000, 3597) + // Minimum execution time: 51_511 nanoseconds. + Weight::from_parts(53_181_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -80,8 +80,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `178` // Estimated: `3597` - // Minimum execution time: 19_451 nanoseconds. - Weight::from_parts(20_271_000, 3597) + // Minimum execution time: 19_621 nanoseconds. + Weight::from_parts(20_680_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -91,8 +91,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `178` // Estimated: `3597` - // Minimum execution time: 28_600 nanoseconds. - Weight::from_parts(30_151_000, 3597) + // Minimum execution time: 28_340 nanoseconds. + Weight::from_parts(29_331_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -102,8 +102,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `251` // Estimated: `8811` - // Minimum execution time: 86_311 nanoseconds. - Weight::from_parts(87_772_000, 8811) + // Minimum execution time: 88_312 nanoseconds. + Weight::from_parts(90_432_000, 8811) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -113,8 +113,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `0` // Estimated: `3597` - // Minimum execution time: 63_361 nanoseconds. - Weight::from_parts(64_022_000, 3597) + // Minimum execution time: 65_881 nanoseconds. + Weight::from_parts(66_502_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -124,8 +124,8 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `178` // Estimated: `3597` - // Minimum execution time: 23_561 nanoseconds. - Weight::from_parts(24_560_000, 3597) + // Minimum execution time: 23_271 nanoseconds. + Weight::from_parts(23_940_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -136,10 +136,10 @@ impl pallet_balances::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `0 + u * (139 ±0)` // Estimated: `990 + u * (2607 ±0)` - // Minimum execution time: 22_561 nanoseconds. - Weight::from_parts(23_031_000, 990) - // Standard Error: 15_600 - .saturating_add(Weight::from_parts(18_848_879, 0).saturating_mul(u.into())) + // Minimum execution time: 22_761 nanoseconds. + Weight::from_parts(23_011_000, 990) + // Standard Error: 14_618 + .saturating_add(Weight::from_parts(18_824_966, 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, 2607).saturating_mul(u.into())) diff --git a/runtime/common/src/weights/pallet_bounties.rs b/runtime/common/src/weights/pallet_bounties.rs index 13790dbe2..f265b2a08 100644 --- a/runtime/common/src/weights/pallet_bounties.rs +++ b/runtime/common/src/weights/pallet_bounties.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_bounties //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -65,10 +65,10 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `109` // Estimated: `3597` - // Minimum execution time: 34_491 nanoseconds. - Weight::from_parts(36_461_894, 3597) - // Standard Error: 24 - .saturating_add(Weight::from_parts(718, 0).saturating_mul(d.into())) + // Minimum execution time: 33_881 nanoseconds. + Weight::from_parts(36_240_422, 3597) + // Standard Error: 23 + .saturating_add(Weight::from_parts(587, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -80,8 +80,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `197` // Estimated: `3646` - // Minimum execution time: 13_180 nanoseconds. - Weight::from_parts(14_000_000, 3646) + // Minimum execution time: 12_291 nanoseconds. + Weight::from_parts(13_050_000, 3646) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -91,8 +91,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `217` // Estimated: `3646` - // Minimum execution time: 11_540 nanoseconds. - Weight::from_parts(12_151_000, 3646) + // Minimum execution time: 10_880 nanoseconds. + Weight::from_parts(11_540_000, 3646) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -104,8 +104,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `545` // Estimated: `6204` - // Minimum execution time: 51_571 nanoseconds. - Weight::from_parts(53_151_000, 6204) + // Minimum execution time: 50_121 nanoseconds. + Weight::from_parts(53_141_000, 6204) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -117,8 +117,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `393` // Estimated: `3646` - // Minimum execution time: 31_851 nanoseconds. - Weight::from_parts(32_481_000, 3646) + // Minimum execution time: 31_770 nanoseconds. + Weight::from_parts(33_771_000, 3646) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -128,8 +128,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `257` // Estimated: `3646` - // Minimum execution time: 18_600 nanoseconds. - Weight::from_parts(19_800_000, 3646) + // Minimum execution time: 17_960 nanoseconds. + Weight::from_parts(19_690_000, 3646) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -143,8 +143,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `578` // Estimated: `8811` - // Minimum execution time: 132_452 nanoseconds. - Weight::from_parts(135_203_000, 8811) + // Minimum execution time: 135_303 nanoseconds. + Weight::from_parts(138_633_000, 8811) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -158,8 +158,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `445` // Estimated: `6204` - // Minimum execution time: 52_521 nanoseconds. - Weight::from_parts(55_201_000, 6204) + // Minimum execution time: 52_181 nanoseconds. + Weight::from_parts(53_411_000, 6204) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -173,8 +173,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `690` // Estimated: `8811` - // Minimum execution time: 90_892 nanoseconds. - Weight::from_parts(93_572_000, 8811) + // Minimum execution time: 90_722 nanoseconds. + Weight::from_parts(94_123_000, 8811) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -184,8 +184,8 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `257` // Estimated: `3646` - // Minimum execution time: 18_010 nanoseconds. - Weight::from_parts(18_880_000, 3646) + // Minimum execution time: 17_740 nanoseconds. + Weight::from_parts(19_000_000, 3646) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -200,10 +200,10 @@ impl pallet_bounties::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `70 + b * (294 ±0)` // Estimated: `1887 + b * (5214 ±0)` - // Minimum execution time: 5_270 nanoseconds. - Weight::from_parts(11_973_763, 1887) - // Standard Error: 60_157 - .saturating_add(Weight::from_parts(49_567_618, 0).saturating_mul(b.into())) + // Minimum execution time: 5_150 nanoseconds. + Weight::from_parts(5_301_000, 1887) + // Standard Error: 35_547 + .saturating_add(Weight::from_parts(49_999_721, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/common/src/weights/pallet_collective.rs b/runtime/common/src/weights/pallet_collective.rs index 8dfcf4b33..5f51c0e91 100644 --- a/runtime/common/src/weights/pallet_collective.rs +++ b/runtime/common/src/weights/pallet_collective.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_collective //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -67,12 +67,12 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `0 + m * (8192 ±0) + p * (3194 ±0)` // Estimated: `32708 + m * (4970 ±60) + p * (4343 ±23)` - // Minimum execution time: 20_500 nanoseconds. - Weight::from_parts(21_070_000, 32708) - // Standard Error: 168_302 - .saturating_add(Weight::from_parts(12_173_910, 0).saturating_mul(m.into())) - // Standard Error: 66_079 - .saturating_add(Weight::from_parts(9_371_088, 0).saturating_mul(p.into())) + // Minimum execution time: 20_502 nanoseconds. + Weight::from_parts(20_771_000, 32708) + // Standard Error: 174_278 + .saturating_add(Weight::from_parts(12_939_126, 0).saturating_mul(m.into())) + // Standard Error: 68_425 + .saturating_add(Weight::from_parts(9_284_811, 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)) @@ -88,12 +88,12 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `30 + m * (32 ±0)` // Estimated: `1516 + m * (32 ±0)` - // Minimum execution time: 18_880 nanoseconds. - Weight::from_parts(18_855_728, 1516) - // Standard Error: 152 - .saturating_add(Weight::from_parts(1_809, 0).saturating_mul(b.into())) - // Standard Error: 1_575 - .saturating_add(Weight::from_parts(13_342, 0).saturating_mul(m.into())) + // Minimum execution time: 19_140 nanoseconds. + Weight::from_parts(20_205_335, 1516) + // Standard Error: 211 + .saturating_add(Weight::from_parts(446, 0).saturating_mul(b.into())) + // Standard Error: 2_177 + .saturating_add(Weight::from_parts(13_450, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -107,12 +107,12 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `30 + m * (32 ±0)` // Estimated: `3496 + m * (32 ±0)` - // Minimum execution time: 21_630 nanoseconds. - Weight::from_parts(20_454_079, 3496) - // Standard Error: 219 - .saturating_add(Weight::from_parts(2_385, 0).saturating_mul(b.into())) - // Standard Error: 2_263 - .saturating_add(Weight::from_parts(34_366, 0).saturating_mul(m.into())) + // Minimum execution time: 21_350 nanoseconds. + Weight::from_parts(21_380_993, 3496) + // Standard Error: 121 + .saturating_add(Weight::from_parts(1_894, 0).saturating_mul(b.into())) + // Standard Error: 1_249 + .saturating_add(Weight::from_parts(24_872, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -133,14 +133,14 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `463 + m * (32 ±0) + p * (33 ±0)` // Estimated: `3888 + m * (32 ±0) + p * (34 ±0)` - // Minimum execution time: 29_760 nanoseconds. - Weight::from_parts(34_237_280, 3888) - // Standard Error: 362 - .saturating_add(Weight::from_parts(3_528, 0).saturating_mul(b.into())) - // Standard Error: 3_785 - .saturating_add(Weight::from_parts(4_396, 0).saturating_mul(m.into())) - // Standard Error: 1_457 - .saturating_add(Weight::from_parts(164_804, 0).saturating_mul(p.into())) + // Minimum execution time: 30_040 nanoseconds. + Weight::from_parts(31_079_481, 3888) + // Standard Error: 205 + .saturating_add(Weight::from_parts(4_821, 0).saturating_mul(b.into())) + // Standard Error: 2_139 + .saturating_add(Weight::from_parts(18_564, 0).saturating_mul(m.into())) + // Standard Error: 823 + .saturating_add(Weight::from_parts(184_398, 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, 32).saturating_mul(m.into())) @@ -155,10 +155,10 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `1137 + m * (64 ±0)` // Estimated: `4601 + m * (64 ±0)` - // Minimum execution time: 30_061 nanoseconds. - Weight::from_parts(31_956_447, 4601) - // Standard Error: 1_069 - .saturating_add(Weight::from_parts(46_000, 0).saturating_mul(m.into())) + // Minimum execution time: 30_011 nanoseconds. + Weight::from_parts(32_304_319, 4601) + // Standard Error: 1_214 + .saturating_add(Weight::from_parts(45_413, 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())) @@ -177,12 +177,12 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `548 + m * (64 ±0) + p * (33 ±0)` // Estimated: `3968 + m * (65 ±0) + p * (34 ±0)` - // Minimum execution time: 33_491 nanoseconds. - Weight::from_parts(36_353_560, 3968) - // Standard Error: 1_733 - .saturating_add(Weight::from_parts(20_917, 0).saturating_mul(m.into())) - // Standard Error: 658 - .saturating_add(Weight::from_parts(156_038, 0).saturating_mul(p.into())) + // Minimum execution time: 33_431 nanoseconds. + Weight::from_parts(35_667_281, 3968) + // Standard Error: 2_032 + .saturating_add(Weight::from_parts(31_556, 0).saturating_mul(m.into())) + // Standard Error: 772 + .saturating_add(Weight::from_parts(174_995, 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())) @@ -203,14 +203,14 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `760 + b * (1 ±0) + m * (64 ±0) + p * (36 ±0)` // Estimated: `4299 + b * (1 ±0) + m * (62 ±0) + p * (36 ±0)` - // Minimum execution time: 47_291 nanoseconds. - Weight::from_parts(49_081_283, 4299) - // Standard Error: 276 - .saturating_add(Weight::from_parts(2_776, 0).saturating_mul(b.into())) - // Standard Error: 2_925 - .saturating_add(Weight::from_parts(29_869, 0).saturating_mul(m.into())) - // Standard Error: 1_112 - .saturating_add(Weight::from_parts(169_899, 0).saturating_mul(p.into())) + // Minimum execution time: 47_931 nanoseconds. + Weight::from_parts(50_625_692, 4299) + // Standard Error: 247 + .saturating_add(Weight::from_parts(2_701, 0).saturating_mul(b.into())) + // Standard Error: 2_615 + .saturating_add(Weight::from_parts(24_182, 0).saturating_mul(m.into())) + // Standard Error: 994 + .saturating_add(Weight::from_parts(181_358, 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())) @@ -233,12 +233,12 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `568 + m * (64 ±0) + p * (33 ±0)` // Estimated: `3988 + m * (65 ±0) + p * (34 ±0)` - // Minimum execution time: 36_321 nanoseconds. - Weight::from_parts(37_216_346, 3988) - // Standard Error: 2_381 - .saturating_add(Weight::from_parts(45_914, 0).saturating_mul(m.into())) - // Standard Error: 904 - .saturating_add(Weight::from_parts(158_978, 0).saturating_mul(p.into())) + // Minimum execution time: 36_661 nanoseconds. + Weight::from_parts(38_338_919, 3988) + // Standard Error: 2_855 + .saturating_add(Weight::from_parts(40_600, 0).saturating_mul(m.into())) + // Standard Error: 1_085 + .saturating_add(Weight::from_parts(176_954, 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())) @@ -261,14 +261,14 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `780 + b * (1 ±0) + m * (64 ±0) + p * (36 ±0)` // Estimated: `4319 + b * (1 ±0) + m * (62 ±0) + p * (36 ±0)` - // Minimum execution time: 49_861 nanoseconds. - Weight::from_parts(54_418_471, 4319) - // Standard Error: 322 - .saturating_add(Weight::from_parts(3_459, 0).saturating_mul(b.into())) - // Standard Error: 3_403 - .saturating_add(Weight::from_parts(2_461, 0).saturating_mul(m.into())) - // Standard Error: 1_293 - .saturating_add(Weight::from_parts(177_452, 0).saturating_mul(p.into())) + // Minimum execution time: 49_501 nanoseconds. + Weight::from_parts(54_860_420, 4319) + // Standard Error: 299 + .saturating_add(Weight::from_parts(2_669, 0).saturating_mul(b.into())) + // Standard Error: 3_168 + .saturating_add(Weight::from_parts(12_781, 0).saturating_mul(m.into())) + // Standard Error: 1_204 + .saturating_add(Weight::from_parts(190_121, 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())) @@ -286,10 +286,10 @@ impl pallet_collective::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `188 + p * (32 ±0)` // Estimated: `1672 + p * (32 ±0)` - // Minimum execution time: 18_090 nanoseconds. - Weight::from_parts(22_184_010, 1672) - // Standard Error: 781 - .saturating_add(Weight::from_parts(150_898, 0).saturating_mul(p.into())) + // Minimum execution time: 18_420 nanoseconds. + Weight::from_parts(22_228_131, 1672) + // Standard Error: 740 + .saturating_add(Weight::from_parts(170_922, 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/common/src/weights/pallet_contracts.rs b/runtime/common/src/weights/pallet_contracts.rs index 13aadb6ff..d13ad5aa1 100644 --- a/runtime/common/src/weights/pallet_contracts.rs +++ b/runtime/common/src/weights/pallet_contracts.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_contracts //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -58,8 +58,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `1527` - // Minimum execution time: 4_640 nanoseconds. - Weight::from_parts(4_761_000, 1527).saturating_add(T::DbWeight::get().reads(1)) + // Minimum execution time: 4_240 nanoseconds. + Weight::from_parts(4_470_000, 1527).saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Skipped::Metadata` (r:0 w:0) /// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -68,10 +68,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `351 + k * (69 ±0)` // Estimated: `341 + k * (70 ±0)` - // Minimum execution time: 15_320 nanoseconds. - Weight::from_parts(3_855_290, 341) - // Standard Error: 3_039 - .saturating_add(Weight::from_parts(1_192_578, 0).saturating_mul(k.into())) + // Minimum execution time: 14_770 nanoseconds. + Weight::from_parts(2_531_288, 341) + // Standard Error: 7_794 + .saturating_add(Weight::from_parts(1_242_502, 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)) @@ -85,10 +85,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `111 + c * (1 ±0)` // Estimated: `6049 + c * (1 ±0)` - // Minimum execution time: 11_271 nanoseconds. - Weight::from_parts(19_918_345, 6049) - // Standard Error: 9 - .saturating_add(Weight::from_parts(986, 0).saturating_mul(c.into())) + // Minimum execution time: 11_340 nanoseconds. + Weight::from_parts(12_148_709, 6049) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_057, 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())) @@ -101,8 +101,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `415` // Estimated: `6355` - // Minimum execution time: 20_531 nanoseconds. - Weight::from_parts(21_381_000, 6355) + // Minimum execution time: 19_800 nanoseconds. + Weight::from_parts(20_660_000, 6355) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -115,10 +115,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `71 + k * (1 ±0)` // Estimated: `3535 + k * (1 ±0)` - // Minimum execution time: 5_920 nanoseconds. - Weight::from_parts(1_847_309, 3535) - // Standard Error: 3_177 - .saturating_add(Weight::from_parts(1_394_090, 0).saturating_mul(k.into())) + // Minimum execution time: 5_861 nanoseconds. + Weight::from_parts(6_131_000, 3535) + // Standard Error: 1_162 + .saturating_add(Weight::from_parts(1_474_918, 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()))) @@ -137,10 +137,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `225 + c * (1 ±0)` // Estimated: `6163 + c * (1 ±0)` - // Minimum execution time: 20_680 nanoseconds. - Weight::from_parts(22_081_562, 6163) - // Standard Error: 1 - .saturating_add(Weight::from_parts(437, 0).saturating_mul(c.into())) + // Minimum execution time: 19_911 nanoseconds. + Weight::from_parts(21_538_356, 6163) + // Standard Error: 2 + .saturating_add(Weight::from_parts(436, 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())) @@ -151,8 +151,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `340` // Estimated: `6280` - // Minimum execution time: 15_550 nanoseconds. - Weight::from_parts(15_960_000, 6280) + // Minimum execution time: 15_281 nanoseconds. + Weight::from_parts(16_080_000, 6280) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -166,8 +166,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `212` // Estimated: `6152` - // Minimum execution time: 56_601 nanoseconds. - Weight::from_parts(59_631_000, 6152) + // Minimum execution time: 55_871 nanoseconds. + Weight::from_parts(59_161_000, 6152) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -179,8 +179,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `499` // Estimated: `6439` - // Minimum execution time: 105_302 nanoseconds. - Weight::from_parts(109_082_000, 6439) + // Minimum execution time: 104_312 nanoseconds. + Weight::from_parts(106_714_000, 6439) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -190,8 +190,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `1527` - // Minimum execution time: 5_260 nanoseconds. - Weight::from_parts(5_530_000, 1527) + // Minimum execution time: 5_210 nanoseconds. + Weight::from_parts(5_410_000, 1527) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -203,8 +203,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `66` // Estimated: `3531` - // Minimum execution time: 16_250 nanoseconds. - Weight::from_parts(16_680_000, 3531) + // Minimum execution time: 16_191 nanoseconds. + Weight::from_parts(16_710_000, 3531) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -214,8 +214,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `3507` - // Minimum execution time: 7_490 nanoseconds. - Weight::from_parts(8_890_000, 3507).saturating_add(T::DbWeight::get().reads(1)) + // Minimum execution time: 7_110 nanoseconds. + Weight::from_parts(8_400_000, 3507).saturating_add(T::DbWeight::get().reads(1)) } /// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0) /// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0) @@ -225,8 +225,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `67` // Estimated: `3532` - // Minimum execution time: 9_620 nanoseconds. - Weight::from_parts(10_261_000, 3532).saturating_add(T::DbWeight::get().reads(2)) + // Minimum execution time: 9_150 nanoseconds. + Weight::from_parts(9_871_000, 3532).saturating_add(T::DbWeight::get().reads(2)) } /// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0) /// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0) @@ -236,8 +236,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `3507` - // Minimum execution time: 14_150 nanoseconds. - Weight::from_parts(14_540_000, 3507) + // Minimum execution time: 9_611 nanoseconds. + Weight::from_parts(9_990_000, 3507) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -260,10 +260,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `630` // Estimated: `6582 + c * (1 ±0)` - // Minimum execution time: 326_527 nanoseconds. - Weight::from_parts(340_681_454, 6582) - // Standard Error: 43 - .saturating_add(Weight::from_parts(35_409, 0).saturating_mul(c.into())) + // Minimum execution time: 329_437 nanoseconds. + Weight::from_parts(336_773_149, 6582) + // Standard Error: 57 + .saturating_add(Weight::from_parts(35_962, 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())) @@ -293,14 +293,14 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `157` // Estimated: `8578` - // Minimum execution time: 4_617_582 nanoseconds. - Weight::from_parts(447_431_730, 8578) - // Standard Error: 228 - .saturating_add(Weight::from_parts(104_684, 0).saturating_mul(c.into())) - // Standard Error: 27 - .saturating_add(Weight::from_parts(2_119, 0).saturating_mul(i.into())) - // Standard Error: 27 - .saturating_add(Weight::from_parts(1_949, 0).saturating_mul(s.into())) + // Minimum execution time: 4_630_041 nanoseconds. + Weight::from_parts(4_692_483_000, 8578) + // Standard Error: 354 + .saturating_add(Weight::from_parts(96_070, 0).saturating_mul(c.into())) + // Standard Error: 42 + .saturating_add(Weight::from_parts(709, 0).saturating_mul(i.into())) + // Standard Error: 42 + .saturating_add(Weight::from_parts(391, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().writes(10)) } @@ -328,12 +328,12 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `394` // Estimated: `6339` - // Minimum execution time: 2_270_200 nanoseconds. - Weight::from_parts(416_644_047, 6339) - // Standard Error: 14 - .saturating_add(Weight::from_parts(1_821, 0).saturating_mul(i.into())) - // Standard Error: 14 - .saturating_add(Weight::from_parts(1_850, 0).saturating_mul(s.into())) + // Minimum execution time: 2_283_341 nanoseconds. + Weight::from_parts(348_189_605, 6339) + // Standard Error: 9 + .saturating_add(Weight::from_parts(1_874, 0).saturating_mul(i.into())) + // Standard Error: 9 + .saturating_add(Weight::from_parts(1_878, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) } @@ -355,8 +355,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `665` // Estimated: `6605` - // Minimum execution time: 239_546 nanoseconds. - Weight::from_parts(246_655_000, 6605) + // Minimum execution time: 245_395 nanoseconds. + Weight::from_parts(249_765_000, 6605) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -375,10 +375,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `3507` - // Minimum execution time: 311_038 nanoseconds. - Weight::from_parts(296_708_643, 3507) - // Standard Error: 119 - .saturating_add(Weight::from_parts(69_881, 0).saturating_mul(c.into())) + // Minimum execution time: 308_408 nanoseconds. + Weight::from_parts(302_712_589, 3507) + // Standard Error: 126 + .saturating_add(Weight::from_parts(70_654, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -396,8 +396,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `212` // Estimated: `3677` - // Minimum execution time: 54_071 nanoseconds. - Weight::from_parts(55_721_000, 3677) + // Minimum execution time: 54_051 nanoseconds. + Weight::from_parts(55_181_000, 3677) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -413,8 +413,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `452` // Estimated: `8867` - // Minimum execution time: 38_701 nanoseconds. - Weight::from_parts(40_411_000, 8867) + // Minimum execution time: 38_641 nanoseconds. + Weight::from_parts(39_581_000, 8867) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -437,10 +437,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `652 + r * (6 ±0)` // Estimated: `6592 + r * (6 ±0)` - // Minimum execution time: 291_796 nanoseconds. - Weight::from_parts(315_615_303, 6592) - // Standard Error: 1_660 - .saturating_add(Weight::from_parts(460_998, 0).saturating_mul(r.into())) + // Minimum execution time: 297_037 nanoseconds. + Weight::from_parts(307_110_769, 6592) + // Standard Error: 1_553 + .saturating_add(Weight::from_parts(468_166, 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())) @@ -464,10 +464,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `706 + r * (209 ±0)` // Estimated: `6608 + r * (2684 ±0)` - // Minimum execution time: 289_916 nanoseconds. - Weight::from_parts(95_598_189, 6608) - // Standard Error: 7_709 - .saturating_add(Weight::from_parts(4_345_101, 0).saturating_mul(r.into())) + // Minimum execution time: 296_857 nanoseconds. + Weight::from_parts(113_335_627, 6608) + // Standard Error: 9_347 + .saturating_add(Weight::from_parts(4_410_562, 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)) @@ -492,10 +492,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `717 + r * (213 ±0)` // Estimated: `6619 + r * (2688 ±0)` - // Minimum execution time: 295_586 nanoseconds. - Weight::from_parts(112_716_065, 6619) - // Standard Error: 9_583 - .saturating_add(Weight::from_parts(5_435_934, 0).saturating_mul(r.into())) + // Minimum execution time: 301_236 nanoseconds. + Weight::from_parts(120_935_152, 6619) + // Standard Error: 9_010 + .saturating_add(Weight::from_parts(5_493_758, 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)) @@ -520,10 +520,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `659 + r * (6 ±0)` // Estimated: `6599 + r * (6 ±0)` - // Minimum execution time: 293_636 nanoseconds. - Weight::from_parts(315_387_419, 6599) - // Standard Error: 1_116 - .saturating_add(Weight::from_parts(603_358, 0).saturating_mul(r.into())) + // Minimum execution time: 304_177 nanoseconds. + Weight::from_parts(317_318_891, 6599) + // Standard Error: 1_160 + .saturating_add(Weight::from_parts(617_959, 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())) @@ -547,10 +547,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `649 + r * (3 ±0)` // Estimated: `6589 + r * (3 ±0)` - // Minimum execution time: 294_576 nanoseconds. - Weight::from_parts(307_885_771, 6589) - // Standard Error: 951 - .saturating_add(Weight::from_parts(219_212, 0).saturating_mul(r.into())) + // Minimum execution time: 295_256 nanoseconds. + Weight::from_parts(308_595_177, 6589) + // Standard Error: 885 + .saturating_add(Weight::from_parts(225_876, 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())) @@ -572,10 +572,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `587 + r * (3 ±0)` // Estimated: `6527 + r * (3 ±0)` - // Minimum execution time: 278_696 nanoseconds. - Weight::from_parts(299_014_640, 6527) - // Standard Error: 859 - .saturating_add(Weight::from_parts(195_773, 0).saturating_mul(r.into())) + // Minimum execution time: 283_286 nanoseconds. + Weight::from_parts(293_211_225, 6527) + // Standard Error: 968 + .saturating_add(Weight::from_parts(200_715, 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())) @@ -599,10 +599,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `653 + r * (6 ±0)` // Estimated: `6593 + r * (6 ±0)` - // Minimum execution time: 297_246 nanoseconds. - Weight::from_parts(313_205_810, 6593) - // Standard Error: 1_497 - .saturating_add(Weight::from_parts(451_768, 0).saturating_mul(r.into())) + // Minimum execution time: 295_546 nanoseconds. + Weight::from_parts(304_435_571, 6593) + // Standard Error: 1_421 + .saturating_add(Weight::from_parts(458_930, 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())) @@ -626,10 +626,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `649 + r * (6 ±0)` // Estimated: `6588 + r * (6 ±0)` - // Minimum execution time: 297_666 nanoseconds. - Weight::from_parts(312_680_481, 6588) - // Standard Error: 1_387 - .saturating_add(Weight::from_parts(492_169, 0).saturating_mul(r.into())) + // Minimum execution time: 297_407 nanoseconds. + Weight::from_parts(316_757_599, 6588) + // Standard Error: 3_124 + .saturating_add(Weight::from_parts(507_310, 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())) @@ -653,10 +653,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `797 + r * (6 ±0)` // Estimated: `6716 + r * (6 ±0)` - // Minimum execution time: 299_006 nanoseconds. - Weight::from_parts(325_045_838, 6716) - // Standard Error: 2_337 - .saturating_add(Weight::from_parts(2_042_244, 0).saturating_mul(r.into())) + // Minimum execution time: 296_527 nanoseconds. + Weight::from_parts(321_948_414, 6716) + // Standard Error: 1_904 + .saturating_add(Weight::from_parts(2_107_368, 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())) @@ -680,10 +680,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `663 + r * (6 ±0)` // Estimated: `6603 + r * (6 ±0)` - // Minimum execution time: 290_296 nanoseconds. - Weight::from_parts(301_961_839, 6603) - // Standard Error: 1_586 - .saturating_add(Weight::from_parts(456_292, 0).saturating_mul(r.into())) + // Minimum execution time: 294_687 nanoseconds. + Weight::from_parts(307_718_352, 6603) + // Standard Error: 1_433 + .saturating_add(Weight::from_parts(456_149, 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())) @@ -707,10 +707,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `661 + r * (6 ±0)` // Estimated: `6601 + r * (6 ±0)` - // Minimum execution time: 291_307 nanoseconds. - Weight::from_parts(309_221_011, 6601) - // Standard Error: 1_108 - .saturating_add(Weight::from_parts(436_259, 0).saturating_mul(r.into())) + // Minimum execution time: 296_586 nanoseconds. + Weight::from_parts(315_602_534, 6601) + // Standard Error: 1_306 + .saturating_add(Weight::from_parts(430_940, 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())) @@ -734,10 +734,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `658 + r * (6 ±0)` // Estimated: `6601 + r * (6 ±0)` - // Minimum execution time: 292_806 nanoseconds. - Weight::from_parts(310_383_299, 6601) - // Standard Error: 1_638 - .saturating_add(Weight::from_parts(446_440, 0).saturating_mul(r.into())) + // Minimum execution time: 299_127 nanoseconds. + Weight::from_parts(313_291_701, 6601) + // Standard Error: 1_453 + .saturating_add(Weight::from_parts(448_916, 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())) @@ -761,10 +761,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `649 + r * (6 ±0)` // Estimated: `6589 + r * (6 ±0)` - // Minimum execution time: 305_238 nanoseconds. - Weight::from_parts(315_975_643, 6589) - // Standard Error: 1_037 - .saturating_add(Weight::from_parts(442_437, 0).saturating_mul(r.into())) + // Minimum execution time: 300_617 nanoseconds. + Weight::from_parts(306_378_716, 6589) + // Standard Error: 1_447 + .saturating_add(Weight::from_parts(461_375, 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())) @@ -790,10 +790,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `722 + r * (14 ±0)` // Estimated: `6655 + r * (14 ±0)` - // Minimum execution time: 292_867 nanoseconds. - Weight::from_parts(309_399_664, 6655) - // Standard Error: 7_325 - .saturating_add(Weight::from_parts(1_429_280, 0).saturating_mul(r.into())) + // Minimum execution time: 296_376 nanoseconds. + Weight::from_parts(320_750_742, 6655) + // Standard Error: 1_775 + .saturating_add(Weight::from_parts(1_482_420, 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())) @@ -817,10 +817,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `651 + r * (6 ±0)` // Estimated: `6591 + r * (6 ±0)` - // Minimum execution time: 294_387 nanoseconds. - Weight::from_parts(332_260_846, 6591) - // Standard Error: 7_340 - .saturating_add(Weight::from_parts(373_303, 0).saturating_mul(r.into())) + // Minimum execution time: 295_217 nanoseconds. + Weight::from_parts(308_011_494, 6591) + // Standard Error: 1_320 + .saturating_add(Weight::from_parts(372_981, 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())) @@ -844,10 +844,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `655` // Estimated: `6595` - // Minimum execution time: 296_177 nanoseconds. - Weight::from_parts(302_270_058, 6595) + // Minimum execution time: 299_587 nanoseconds. + Weight::from_parts(312_534_173, 6595) // Standard Error: 1 - .saturating_add(Weight::from_parts(704, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(682, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -870,10 +870,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `639 + r * (8 ±0)` // Estimated: `6579 + r * (8 ±0)` - // Minimum execution time: 287_147 nanoseconds. - Weight::from_parts(303_005_771, 6579) - // Standard Error: 1_724_904 - .saturating_add(Weight::from_parts(9_221_128, 0).saturating_mul(r.into())) + // Minimum execution time: 289_176 nanoseconds. + Weight::from_parts(302_862_122, 6579) .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())) @@ -897,10 +895,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `649` // Estimated: `6589` - // Minimum execution time: 305_696 nanoseconds. - Weight::from_parts(311_047_904, 6589) - // Standard Error: 1 - .saturating_add(Weight::from_parts(424, 0).saturating_mul(n.into())) + // Minimum execution time: 292_717 nanoseconds. + Weight::from_parts(313_598_259, 6589) + // Standard Error: 5 + .saturating_add(Weight::from_parts(418, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -929,10 +927,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `2758 + r * (319 ±0)` // Estimated: `8698 + r * (5269 ±0)` - // Minimum execution time: 309_398 nanoseconds. - Weight::from_parts(321_521_477, 8698) - // Standard Error: 1_561_696 - .saturating_add(Weight::from_parts(144_868_922, 0).saturating_mul(r.into())) + // Minimum execution time: 312_397 nanoseconds. + Weight::from_parts(325_311_114, 8698) + // Standard Error: 1_894_983 + .saturating_add(Weight::from_parts(151_059_185, 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)) @@ -960,10 +958,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `730 + r * (10 ±0)` // Estimated: `6664 + r * (10 ±0)` - // Minimum execution time: 298_988 nanoseconds. - Weight::from_parts(319_832_582, 6664) - // Standard Error: 2_096 - .saturating_add(Weight::from_parts(2_265_800, 0).saturating_mul(r.into())) + // Minimum execution time: 296_967 nanoseconds. + Weight::from_parts(331_491_554, 6664) + // Standard Error: 2_889 + .saturating_add(Weight::from_parts(2_475_715, 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())) @@ -987,10 +985,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `649 + r * (10 ±0)` // Estimated: `6589 + r * (10 ±0)` - // Minimum execution time: 291_207 nanoseconds. - Weight::from_parts(325_487_184, 6589) - // Standard Error: 2_865 - .saturating_add(Weight::from_parts(4_251_700, 0).saturating_mul(r.into())) + // Minimum execution time: 290_676 nanoseconds. + Weight::from_parts(302_681_212, 6589) + // Standard Error: 9_494 + .saturating_add(Weight::from_parts(4_496_062, 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())) @@ -1015,12 +1013,12 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `666 + t * (32 ±0)` // Estimated: `6607 + t * (2508 ±0)` - // Minimum execution time: 308_626 nanoseconds. - Weight::from_parts(314_524_794, 6607) - // Standard Error: 196_609 - .saturating_add(Weight::from_parts(3_258_686, 0).saturating_mul(t.into())) - // Standard Error: 54 - .saturating_add(Weight::from_parts(613, 0).saturating_mul(n.into())) + // Minimum execution time: 312_876 nanoseconds. + Weight::from_parts(315_123_943, 6607) + // Standard Error: 224_081 + .saturating_add(Weight::from_parts(3_111_318, 0).saturating_mul(t.into())) + // Standard Error: 62 + .saturating_add(Weight::from_parts(589, 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)) @@ -1046,10 +1044,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `648 + r * (7 ±0)` // Estimated: `6588 + r * (7 ±0)` - // Minimum execution time: 198_074 nanoseconds. - Weight::from_parts(209_815_774, 6588) - // Standard Error: 812 - .saturating_add(Weight::from_parts(287_700, 0).saturating_mul(r.into())) + // Minimum execution time: 203_334 nanoseconds. + Weight::from_parts(210_011_266, 6588) + // Standard Error: 1_028 + .saturating_add(Weight::from_parts(287_881, 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())) @@ -1073,10 +1071,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `125599` // Estimated: `131539` - // Minimum execution time: 449_290 nanoseconds. - Weight::from_parts(468_535_985, 131539) + // Minimum execution time: 441_849 nanoseconds. + Weight::from_parts(460_552_839, 131539) // Standard Error: 2 - .saturating_add(Weight::from_parts(1_084, 0).saturating_mul(i.into())) + .saturating_add(Weight::from_parts(1_092, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1087,10 +1085,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `702 + r * (292 ±0)` // Estimated: `706 + r * (293 ±0)` - // Minimum execution time: 290_307 nanoseconds. - Weight::from_parts(197_301_662, 706) - // Standard Error: 18_339 - .saturating_add(Weight::from_parts(7_527_396, 0).saturating_mul(r.into())) + // Minimum execution time: 294_846 nanoseconds. + Weight::from_parts(177_111_907, 706) + // Standard Error: 15_040 + .saturating_add(Weight::from_parts(7_418_990, 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)) @@ -1104,10 +1102,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1235` // Estimated: `1219` - // Minimum execution time: 316_898 nanoseconds. - Weight::from_parts(377_157_520, 1219) - // Standard Error: 105 - .saturating_add(Weight::from_parts(805, 0).saturating_mul(n.into())) + // Minimum execution time: 319_896 nanoseconds. + Weight::from_parts(387_042_761, 1219) + // Standard Error: 125 + .saturating_add(Weight::from_parts(239, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(8)) } @@ -1118,10 +1116,8 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1038 + n * (1 ±0)` // Estimated: `1038 + n * (1 ±0)` - // Minimum execution time: 313_737 nanoseconds. - Weight::from_parts(327_849_270, 1038) - // Standard Error: 75 - .saturating_add(Weight::from_parts(326, 0).saturating_mul(n.into())) + // Minimum execution time: 318_586 nanoseconds. + Weight::from_parts(339_833_840, 1038) .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())) @@ -1133,10 +1129,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `702 + r * (288 ±0)` // Estimated: `706 + r * (289 ±0)` - // Minimum execution time: 295_667 nanoseconds. - Weight::from_parts(190_708_135, 706) - // Standard Error: 13_051 - .saturating_add(Weight::from_parts(7_421_672, 0).saturating_mul(r.into())) + // Minimum execution time: 294_936 nanoseconds. + Weight::from_parts(171_107_020, 706) + // Standard Error: 15_269 + .saturating_add(Weight::from_parts(7_392_364, 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)) @@ -1150,10 +1146,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1034 + n * (1 ±0)` // Estimated: `1034 + n * (1 ±0)` - // Minimum execution time: 315_176 nanoseconds. - Weight::from_parts(328_624_920, 1034) - // Standard Error: 72 - .saturating_add(Weight::from_parts(406, 0).saturating_mul(n.into())) + // Minimum execution time: 317_576 nanoseconds. + Weight::from_parts(332_646_981, 1034) + // Standard Error: 79 + .saturating_add(Weight::from_parts(131, 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())) @@ -1165,10 +1161,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `698 + r * (296 ±0)` // Estimated: `707 + r * (297 ±0)` - // Minimum execution time: 296_727 nanoseconds. - Weight::from_parts(206_570_181, 707) - // Standard Error: 10_848 - .saturating_add(Weight::from_parts(6_212_777, 0).saturating_mul(r.into())) + // Minimum execution time: 296_837 nanoseconds. + Weight::from_parts(208_513_319, 707) + // Standard Error: 13_186 + .saturating_add(Weight::from_parts(6_161_944, 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)) @@ -1181,10 +1177,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1050 + n * (1 ±0)` // Estimated: `1050 + n * (1 ±0)` - // Minimum execution time: 314_667 nanoseconds. - Weight::from_parts(331_082_259, 1050) - // Standard Error: 155 - .saturating_add(Weight::from_parts(709, 0).saturating_mul(n.into())) + // Minimum execution time: 315_596 nanoseconds. + Weight::from_parts(330_275_721, 1050) + // Standard Error: 85 + .saturating_add(Weight::from_parts(876, 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())) @@ -1196,10 +1192,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `705 + r * (288 ±0)` // Estimated: `709 + r * (289 ±0)` - // Minimum execution time: 295_116 nanoseconds. - Weight::from_parts(240_049_365, 709) - // Standard Error: 15_714 - .saturating_add(Weight::from_parts(5_850_997, 0).saturating_mul(r.into())) + // Minimum execution time: 298_735 nanoseconds. + Weight::from_parts(218_944_421, 709) + // Standard Error: 12_191 + .saturating_add(Weight::from_parts(5_822_279, 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)) @@ -1212,8 +1208,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1037 + n * (1 ±0)` // Estimated: `1037 + n * (1 ±0)` - // Minimum execution time: 311_747 nanoseconds. - Weight::from_parts(331_771_082, 1037) + // Minimum execution time: 313_946 nanoseconds. + Weight::from_parts(327_050_283, 1037) + // Standard Error: 137 + .saturating_add(Weight::from_parts(314, 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())) @@ -1225,10 +1223,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `699 + r * (296 ±0)` // Estimated: `706 + r * (297 ±0)` - // Minimum execution time: 293_666 nanoseconds. - Weight::from_parts(178_195_908, 706) - // Standard Error: 14_853 - .saturating_add(Weight::from_parts(7_660_297, 0).saturating_mul(r.into())) + // Minimum execution time: 296_526 nanoseconds. + Weight::from_parts(184_551_113, 706) + // Standard Error: 14_698 + .saturating_add(Weight::from_parts(7_571_507, 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)) @@ -1242,10 +1240,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1051 + n * (1 ±0)` // Estimated: `1051 + n * (1 ±0)` - // Minimum execution time: 315_377 nanoseconds. - Weight::from_parts(331_497_305, 1051) - // Standard Error: 77 - .saturating_add(Weight::from_parts(771, 0).saturating_mul(n.into())) + // Minimum execution time: 322_647 nanoseconds. + Weight::from_parts(335_704_596, 1051) + // Standard Error: 79 + .saturating_add(Weight::from_parts(832, 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())) @@ -1269,10 +1267,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1233 + r * (45 ±0)` // Estimated: `7124 + r * (2520 ±0)` - // Minimum execution time: 299_616 nanoseconds. - Weight::from_parts(74_626_870, 7124) - // Standard Error: 69_924 - .saturating_add(Weight::from_parts(46_765_306, 0).saturating_mul(r.into())) + // Minimum execution time: 301_096 nanoseconds. + Weight::from_parts(140_091_134, 7124) + // Standard Error: 29_695 + .saturating_add(Weight::from_parts(48_165_237, 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)) @@ -1298,10 +1296,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `684 + r * (245 ±0)` // Estimated: `8943 + r * (2721 ±0)` - // Minimum execution time: 296_097 nanoseconds. - Weight::from_parts(301_786_000, 8943) - // Standard Error: 223_156 - .saturating_add(Weight::from_parts(267_846_526, 0).saturating_mul(r.into())) + // Minimum execution time: 304_986 nanoseconds. + Weight::from_parts(308_216_000, 8943) + // Standard Error: 596_005 + .saturating_add(Weight::from_parts(273_098_699, 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)) @@ -1326,11 +1324,11 @@ impl pallet_contracts::weights::WeightInfo for WeightIn fn seal_delegate_call(r: u32) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (576 ±0)` - // Estimated: `6598 + r * (2637 ±3)` - // Minimum execution time: 295_886 nanoseconds. - Weight::from_parts(300_856_000, 6598) - // Standard Error: 307_003 - .saturating_add(Weight::from_parts(266_573_080, 0).saturating_mul(r.into())) + // Estimated: `6598 + r * (2637 ±10)` + // Minimum execution time: 298_526 nanoseconds. + Weight::from_parts(302_586_000, 6598) + // Standard Error: 215_251 + .saturating_add(Weight::from_parts(269_327_525, 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)) @@ -1357,12 +1355,12 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1093 + t * (285 ±0)` // Estimated: `11983 + t * (5235 ±0)` - // Minimum execution time: 523_641 nanoseconds. - Weight::from_parts(506_173_881, 11983) - // Standard Error: 1_511_602 - .saturating_add(Weight::from_parts(47_611_053, 0).saturating_mul(t.into())) + // Minimum execution time: 529_312 nanoseconds. + Weight::from_parts(504_452_664, 11983) + // Standard Error: 1_835_232 + .saturating_add(Weight::from_parts(53_123_569, 0).saturating_mul(t.into())) // Standard Error: 2 - .saturating_add(Weight::from_parts(677, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(686, 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)) @@ -1392,10 +1390,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1118 + r * (255 ±0)` // Estimated: `9443 + r * (2731 ±0)` - // Minimum execution time: 706_125 nanoseconds. - Weight::from_parts(727_466_000, 9443) - // Standard Error: 353_997 - .saturating_add(Weight::from_parts(422_352_641, 0).saturating_mul(r.into())) + // Minimum execution time: 718_106 nanoseconds. + Weight::from_parts(721_614_000, 9443) + // Standard Error: 407_901 + .saturating_add(Weight::from_parts(437_259_812, 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)) @@ -1427,14 +1425,14 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1051 + t * (145 ±0)` // Estimated: `11964 + t * (2591 ±2)` - // Minimum execution time: 2_297_169 nanoseconds. - Weight::from_parts(548_267_744, 11964) - // Standard Error: 3_082_488 - .saturating_add(Weight::from_parts(80_380_773, 0).saturating_mul(t.into())) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_715, 0).saturating_mul(i.into())) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_804, 0).saturating_mul(s.into())) + // Minimum execution time: 2_288_859 nanoseconds. + Weight::from_parts(566_918_434, 11964) + // Standard Error: 4_314_027 + .saturating_add(Weight::from_parts(77_974_693, 0).saturating_mul(t.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_738, 0).saturating_mul(i.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_795, 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)) @@ -1460,10 +1458,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `648 + r * (8 ±0)` // Estimated: `6588 + r * (8 ±0)` - // Minimum execution time: 288_616 nanoseconds. - Weight::from_parts(304_238_375, 6588) - // Standard Error: 1_096 - .saturating_add(Weight::from_parts(463_891, 0).saturating_mul(r.into())) + // Minimum execution time: 291_297 nanoseconds. + Weight::from_parts(307_595_353, 6588) + // Standard Error: 1_126 + .saturating_add(Weight::from_parts(491_564, 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())) @@ -1487,10 +1485,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `656` // Estimated: `6596` - // Minimum execution time: 298_126 nanoseconds. - Weight::from_parts(300_833_024, 6596) - // Standard Error: 1 - .saturating_add(Weight::from_parts(990, 0).saturating_mul(n.into())) + // Minimum execution time: 296_977 nanoseconds. + Weight::from_parts(304_722_630, 6596) + // Standard Error: 2 + .saturating_add(Weight::from_parts(999, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1513,10 +1511,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `650 + r * (8 ±0)` // Estimated: `6590 + r * (8 ±0)` - // Minimum execution time: 285_446 nanoseconds. - Weight::from_parts(305_560_109, 6590) - // Standard Error: 1_535 - .saturating_add(Weight::from_parts(895_001, 0).saturating_mul(r.into())) + // Minimum execution time: 292_546 nanoseconds. + Weight::from_parts(307_188_611, 6590) + // Standard Error: 1_211 + .saturating_add(Weight::from_parts(888_225, 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())) @@ -1540,10 +1538,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `658` // Estimated: `6598` - // Minimum execution time: 292_247 nanoseconds. - Weight::from_parts(293_100_757, 6598) - // Standard Error: 5 - .saturating_add(Weight::from_parts(3_308, 0).saturating_mul(n.into())) + // Minimum execution time: 295_046 nanoseconds. + Weight::from_parts(307_144_750, 6598) + // Standard Error: 3 + .saturating_add(Weight::from_parts(3_337, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1566,10 +1564,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `650 + r * (8 ±0)` // Estimated: `6593 + r * (8 ±0)` - // Minimum execution time: 288_776 nanoseconds. - Weight::from_parts(305_999_293, 6593) - // Standard Error: 1_239 - .saturating_add(Weight::from_parts(573_113, 0).saturating_mul(r.into())) + // Minimum execution time: 291_236 nanoseconds. + Weight::from_parts(315_543_506, 6593) + // Standard Error: 1_521 + .saturating_add(Weight::from_parts(597_614, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1593,10 +1591,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `658` // Estimated: `6598` - // Minimum execution time: 289_236 nanoseconds. - Weight::from_parts(300_022_454, 6598) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_397, 0).saturating_mul(n.into())) + // Minimum execution time: 293_057 nanoseconds. + Weight::from_parts(295_127_880, 6598) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_404, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1619,10 +1617,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `650 + r * (8 ±0)` // Estimated: `6590 + r * (8 ±0)` - // Minimum execution time: 296_816 nanoseconds. - Weight::from_parts(306_825_366, 6590) - // Standard Error: 1_504 - .saturating_add(Weight::from_parts(584_915, 0).saturating_mul(r.into())) + // Minimum execution time: 293_087 nanoseconds. + Weight::from_parts(309_221_379, 6590) + // Standard Error: 1_396 + .saturating_add(Weight::from_parts(557_679, 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())) @@ -1646,10 +1644,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `658` // Estimated: `6598` - // Minimum execution time: 301_128 nanoseconds. - Weight::from_parts(301_832_734, 6598) + // Minimum execution time: 293_626 nanoseconds. + Weight::from_parts(305_848_869, 6598) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_376, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_370, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1672,10 +1670,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `783 + n * (1 ±0)` // Estimated: `6720 + n * (1 ±0)` - // Minimum execution time: 369_009 nanoseconds. - Weight::from_parts(379_242_044, 6720) - // Standard Error: 34 - .saturating_add(Weight::from_parts(6_651, 0).saturating_mul(n.into())) + // Minimum execution time: 372_717 nanoseconds. + Weight::from_parts(384_935_036, 6720) + // Standard Error: 14 + .saturating_add(Weight::from_parts(6_598, 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())) @@ -1699,10 +1697,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `589 + r * (112 ±0)` // Estimated: `6534 + r * (112 ±0)` - // Minimum execution time: 292_496 nanoseconds. - Weight::from_parts(329_476_935, 6534) - // Standard Error: 44_417 - .saturating_add(Weight::from_parts(67_079_400, 0).saturating_mul(r.into())) + // Minimum execution time: 296_616 nanoseconds. + Weight::from_parts(323_922_200, 6534) + // Standard Error: 46_765 + .saturating_add(Weight::from_parts(67_123_432, 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())) @@ -1726,10 +1724,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `693 + r * (76 ±0)` // Estimated: `6587 + r * (77 ±0)` - // Minimum execution time: 297_547 nanoseconds. - Weight::from_parts(344_890_843, 6587) - // Standard Error: 104_416 - .saturating_add(Weight::from_parts(51_042_864, 0).saturating_mul(r.into())) + // Minimum execution time: 295_726 nanoseconds. + Weight::from_parts(349_229_460, 6587) + // Standard Error: 194_822 + .saturating_add(Weight::from_parts(55_117_133, 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())) @@ -1753,10 +1751,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `663 + r * (42 ±0)` // Estimated: `6602 + r * (42 ±0)` - // Minimum execution time: 295_227 nanoseconds. - Weight::from_parts(327_226_775, 6602) - // Standard Error: 15_058 - .saturating_add(Weight::from_parts(12_335_614, 0).saturating_mul(r.into())) + // Minimum execution time: 297_326 nanoseconds. + Weight::from_parts(338_872_213, 6602) + // Standard Error: 26_541 + .saturating_add(Weight::from_parts(12_444_935, 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())) @@ -1780,10 +1778,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0 + r * (965 ±0)` // Estimated: `6593 + r * (3090 ±7)` - // Minimum execution time: 296_896 nanoseconds. - Weight::from_parts(299_566_000, 6593) - // Standard Error: 69_815 - .saturating_add(Weight::from_parts(30_719_598, 0).saturating_mul(r.into())) + // Minimum execution time: 296_406 nanoseconds. + Weight::from_parts(301_676_000, 6593) + // Standard Error: 92_994 + .saturating_add(Weight::from_parts(33_492_066, 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)) @@ -1809,10 +1807,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `715 + r * (131 ±0)` // Estimated: `6664 + r * (2606 ±0)` - // Minimum execution time: 297_747 nanoseconds. - Weight::from_parts(319_997_259, 6664) - // Standard Error: 42_338 - .saturating_add(Weight::from_parts(7_112_630, 0).saturating_mul(r.into())) + // Minimum execution time: 297_206 nanoseconds. + Weight::from_parts(319_531_470, 6664) + // Standard Error: 50_175 + .saturating_add(Weight::from_parts(7_520_497, 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)) @@ -1838,10 +1836,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `754 + r * (183 ±0)` // Estimated: `129453 + r * (2568 ±0)` - // Minimum execution time: 295_336 nanoseconds. - Weight::from_parts(320_241_468, 129453) - // Standard Error: 47_327 - .saturating_add(Weight::from_parts(6_287_223, 0).saturating_mul(r.into())) + // Minimum execution time: 300_916 nanoseconds. + Weight::from_parts(322_216_180, 129453) + // Standard Error: 49_418 + .saturating_add(Weight::from_parts(6_312_841, 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)) @@ -1867,10 +1865,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `644 + r * (3 ±0)` // Estimated: `6584 + r * (3 ±0)` - // Minimum execution time: 289_556 nanoseconds. - Weight::from_parts(307_547_023, 6584) - // Standard Error: 1_010 - .saturating_add(Weight::from_parts(212_004, 0).saturating_mul(r.into())) + // Minimum execution time: 292_696 nanoseconds. + Weight::from_parts(308_241_185, 6584) + // Standard Error: 984 + .saturating_add(Weight::from_parts(225_005, 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())) @@ -1894,10 +1892,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1382 + r * (39 ±0)` // Estimated: `7282 + r * (39 ±0)` - // Minimum execution time: 294_136 nanoseconds. - Weight::from_parts(339_960_111, 7282) - // Standard Error: 1_781 - .saturating_add(Weight::from_parts(308_536, 0).saturating_mul(r.into())) + // Minimum execution time: 297_267 nanoseconds. + Weight::from_parts(339_255_149, 7282) + // Standard Error: 4_082 + .saturating_add(Weight::from_parts(333_959, 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, 39).saturating_mul(r.into())) @@ -1923,10 +1921,10 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `647 + r * (3 ±0)` // Estimated: `6587 + r * (3 ±0)` - // Minimum execution time: 289_426 nanoseconds. - Weight::from_parts(314_864_831, 6587) - // Standard Error: 1_336 - .saturating_add(Weight::from_parts(195_969, 0).saturating_mul(r.into())) + // Minimum execution time: 293_016 nanoseconds. + Weight::from_parts(312_745_195, 6587) + // Standard Error: 957 + .saturating_add(Weight::from_parts(187_244, 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())) @@ -1936,9 +1934,9 @@ impl pallet_contracts::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_281 nanoseconds. - Weight::from_parts(2_903_016, 0) - // Standard Error: 76 - .saturating_add(Weight::from_parts(31_600, 0).saturating_mul(r.into())) + // Minimum execution time: 2_160 nanoseconds. + Weight::from_parts(3_284_722, 0) + // Standard Error: 36 + .saturating_add(Weight::from_parts(30_771, 0).saturating_mul(r.into())) } } diff --git a/runtime/common/src/weights/pallet_democracy.rs b/runtime/common/src/weights/pallet_democracy.rs index bdabf6302..ecae4b144 100644 --- a/runtime/common/src/weights/pallet_democracy.rs +++ b/runtime/common/src/weights/pallet_democracy.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_democracy //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -64,8 +64,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `4772` // Estimated: `18187` - // Minimum execution time: 49_271 nanoseconds. - Weight::from_parts(53_092_000, 18187) + // Minimum execution time: 49_941 nanoseconds. + Weight::from_parts(54_241_000, 18187) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -75,8 +75,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `3527` // Estimated: `6695` - // Minimum execution time: 44_681 nanoseconds. - Weight::from_parts(47_531_000, 6695) + // Minimum execution time: 46_621 nanoseconds. + Weight::from_parts(48_081_000, 6695) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -92,8 +92,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `3415` // Estimated: `7264` - // Minimum execution time: 60_791 nanoseconds. - Weight::from_parts(64_461_000, 7264) + // Minimum execution time: 60_111 nanoseconds. + Weight::from_parts(62_501_000, 7264) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -109,8 +109,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `3437` // Estimated: `7264` - // Minimum execution time: 64_981 nanoseconds. - Weight::from_parts(68_891_000, 7264) + // Minimum execution time: 65_572 nanoseconds. + Weight::from_parts(68_332_000, 7264) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -124,8 +124,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `341` // Estimated: `3674` - // Minimum execution time: 30_381 nanoseconds. - Weight::from_parts(32_091_000, 3674) + // Minimum execution time: 31_261 nanoseconds. + Weight::from_parts(32_411_000, 3674) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -147,8 +147,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `6171` // Estimated: `18187` - // Minimum execution time: 125_383 nanoseconds. - Weight::from_parts(129_103_000, 18187) + // Minimum execution time: 126_074 nanoseconds. + Weight::from_parts(128_563_000, 18187) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(8)) } @@ -160,8 +160,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `3387` // Estimated: `6707` - // Minimum execution time: 15_931 nanoseconds. - Weight::from_parts(16_441_000, 6707) + // Minimum execution time: 15_960 nanoseconds. + Weight::from_parts(16_511_000, 6707) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -171,8 +171,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_560 nanoseconds. - Weight::from_parts(3_781_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 3_580 nanoseconds. + Weight::from_parts(3_820_000, 0).saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Democracy::NextExternal` (r:0 w:1) /// Proof: `Democracy::NextExternal` (`max_values`: Some(1), `max_size`: Some(132), added: 627, mode: `MaxEncodedLen`) @@ -180,8 +180,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_540 nanoseconds. - Weight::from_parts(3_710_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 3_570 nanoseconds. + Weight::from_parts(3_730_000, 0).saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Democracy::NextExternal` (r:1 w:1) /// Proof: `Democracy::NextExternal` (`max_values`: Some(1), `max_size`: Some(132), added: 627, mode: `MaxEncodedLen`) @@ -195,8 +195,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 32_460 nanoseconds. - Weight::from_parts(34_211_000, 3518) + // Minimum execution time: 33_050 nanoseconds. + Weight::from_parts(33_681_000, 3518) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -210,8 +210,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `3490` // Estimated: `6707` - // Minimum execution time: 35_211 nanoseconds. - Weight::from_parts(37_441_000, 6707) + // Minimum execution time: 35_840 nanoseconds. + Weight::from_parts(37_451_000, 6707) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -227,8 +227,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `6074` // Estimated: `18187` - // Minimum execution time: 104_423 nanoseconds. - Weight::from_parts(106_693_000, 18187) + // Minimum execution time: 104_372 nanoseconds. + Weight::from_parts(108_042_000, 18187) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -240,8 +240,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `238` // Estimated: `3518` - // Minimum execution time: 23_271 nanoseconds. - Weight::from_parts(24_361_000, 3518) + // Minimum execution time: 23_921 nanoseconds. + Weight::from_parts(24_771_000, 3518) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -256,10 +256,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `211 + r * (94 ±0)` // Estimated: `1489 + r * (2684 ±0)` - // Minimum execution time: 9_260 nanoseconds. - Weight::from_parts(9_259_931, 1489) - // Standard Error: 11_208 - .saturating_add(Weight::from_parts(3_838_840, 0).saturating_mul(r.into())) + // Minimum execution time: 9_330 nanoseconds. + Weight::from_parts(9_647_338, 1489) + // Standard Error: 9_945 + .saturating_add(Weight::from_parts(3_835_340, 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)) @@ -282,10 +282,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `211 + r * (94 ±0)` // Estimated: `18187 + r * (2684 ±0)` - // Minimum execution time: 13_140 nanoseconds. - Weight::from_parts(14_869_159, 18187) - // Standard Error: 12_025 - .saturating_add(Weight::from_parts(3_843_738, 0).saturating_mul(r.into())) + // Minimum execution time: 13_350 nanoseconds. + Weight::from_parts(13_726_197, 18187) + // Standard Error: 10_399 + .saturating_add(Weight::from_parts(3_856_386, 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)) @@ -304,10 +304,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `779 + r * (116 ±0)` // Estimated: `19812 + r * (2684 ±0)` - // Minimum execution time: 45_960 nanoseconds. - Weight::from_parts(49_619_723, 19812) - // Standard Error: 14_949 - .saturating_add(Weight::from_parts(5_026_865, 0).saturating_mul(r.into())) + // Minimum execution time: 47_971 nanoseconds. + Weight::from_parts(50_579_543, 19812) + // Standard Error: 16_461 + .saturating_add(Weight::from_parts(5_060_631, 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)) @@ -323,10 +323,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `468 + r * (116 ±0)` // Estimated: `13538 + r * (2684 ±0)` - // Minimum execution time: 23_930 nanoseconds. - Weight::from_parts(22_472_770, 13538) - // Standard Error: 14_102 - .saturating_add(Weight::from_parts(4_944_137, 0).saturating_mul(r.into())) + // Minimum execution time: 24_501 nanoseconds. + Weight::from_parts(21_600_728, 13538) + // Standard Error: 12_607 + .saturating_add(Weight::from_parts(4_975_630, 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)) @@ -340,7 +340,7 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Measured: `0` // Estimated: `0` // Minimum execution time: 3_710 nanoseconds. - Weight::from_parts(3_950_000, 0).saturating_add(T::DbWeight::get().writes(1)) + Weight::from_parts(3_970_000, 0).saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Democracy::VotingOf` (r:1 w:1) /// Proof: `Democracy::VotingOf` (`max_values`: None, `max_size`: Some(3799), added: 6274, mode: `MaxEncodedLen`) @@ -355,10 +355,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `500` // Estimated: `7264` - // Minimum execution time: 28_030 nanoseconds. - Weight::from_parts(44_644_468, 7264) - // Standard Error: 3_946 - .saturating_add(Weight::from_parts(82_835, 0).saturating_mul(r.into())) + // Minimum execution time: 28_580 nanoseconds. + Weight::from_parts(45_504_184, 7264) + // Standard Error: 4_923 + .saturating_add(Weight::from_parts(75_222, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -375,10 +375,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `501 + r * (22 ±0)` // Estimated: `7264` - // Minimum execution time: 39_611 nanoseconds. - Weight::from_parts(42_809_659, 7264) - // Standard Error: 2_639 - .saturating_add(Weight::from_parts(111_580, 0).saturating_mul(r.into())) + // Minimum execution time: 39_871 nanoseconds. + Weight::from_parts(42_503_395, 7264) + // Standard Error: 1_792 + .saturating_add(Weight::from_parts(117_540, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -391,10 +391,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `707 + r * (26 ±0)` // Estimated: `7264` - // Minimum execution time: 19_100 nanoseconds. - Weight::from_parts(24_046_770, 7264) - // Standard Error: 3_091 - .saturating_add(Weight::from_parts(107_016, 0).saturating_mul(r.into())) + // Minimum execution time: 18_701 nanoseconds. + Weight::from_parts(22_843_487, 7264) + // Standard Error: 1_787 + .saturating_add(Weight::from_parts(119_279, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -407,10 +407,10 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `707 + r * (26 ±0)` // Estimated: `7264` - // Minimum execution time: 18_970 nanoseconds. - Weight::from_parts(23_482_915, 7264) - // Standard Error: 1_772 - .saturating_add(Weight::from_parts(115_886, 0).saturating_mul(r.into())) + // Minimum execution time: 18_681 nanoseconds. + Weight::from_parts(22_876_666, 7264) + // Standard Error: 1_759 + .saturating_add(Weight::from_parts(118_342, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -424,8 +424,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `323` // Estimated: `3556` - // Minimum execution time: 22_120 nanoseconds. - Weight::from_parts(23_481_000, 3556) + // Minimum execution time: 21_950 nanoseconds. + Weight::from_parts(22_930_000, 3556) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -437,8 +437,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 19_961 nanoseconds. - Weight::from_parts(20_461_000, 3518) + // Minimum execution time: 19_981 nanoseconds. + Weight::from_parts(20_800_000, 3518) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -452,8 +452,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `4855` // Estimated: `18187` - // Minimum execution time: 47_361 nanoseconds. - Weight::from_parts(49_311_000, 18187) + // Minimum execution time: 46_731 nanoseconds. + Weight::from_parts(48_471_000, 18187) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -465,8 +465,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `4789` // Estimated: `18187` - // Minimum execution time: 43_951 nanoseconds. - Weight::from_parts(46_721_000, 18187) + // Minimum execution time: 43_271 nanoseconds. + Weight::from_parts(45_341_000, 18187) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -478,8 +478,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 17_021 nanoseconds. - Weight::from_parts(18_270_000, 3556) + // Minimum execution time: 17_310 nanoseconds. + Weight::from_parts(18_041_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -491,8 +491,8 @@ impl pallet_democracy::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `273` // Estimated: `3674` - // Minimum execution time: 22_111 nanoseconds. - Weight::from_parts(22_740_000, 3674) + // Minimum execution time: 22_311 nanoseconds. + Weight::from_parts(24_100_000, 3674) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_identity.rs b/runtime/common/src/weights/pallet_identity.rs index 29a1940b6..891a32202 100644 --- a/runtime/common/src/weights/pallet_identity.rs +++ b/runtime/common/src/weights/pallet_identity.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_identity //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -59,10 +59,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `32 + r * (57 ±0)` // Estimated: `1942` - // Minimum execution time: 14_410 nanoseconds. - Weight::from_parts(15_407_333, 1942) - // Standard Error: 11_030 - .saturating_add(Weight::from_parts(212_489, 0).saturating_mul(r.into())) + // Minimum execution time: 14_090 nanoseconds. + Weight::from_parts(14_986_112, 1942) + // Standard Error: 9_527 + .saturating_add(Weight::from_parts(209_502, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -74,12 +74,12 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `442 + r * (5 ±0)` // Estimated: `8303` - // Minimum execution time: 23_670 nanoseconds. - Weight::from_parts(35_369_137, 8303) - // Standard Error: 29_907 - .saturating_add(Weight::from_parts(307_325, 0).saturating_mul(r.into())) - // Standard Error: 3_473 - .saturating_add(Weight::from_parts(605_307, 0).saturating_mul(x.into())) + // Minimum execution time: 23_400 nanoseconds. + Weight::from_parts(34_675_788, 8303) + // Standard Error: 30_978 + .saturating_add(Weight::from_parts(390_774, 0).saturating_mul(r.into())) + // Standard Error: 3_598 + .saturating_add(Weight::from_parts(647_168, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -94,10 +94,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `101` // Estimated: `8303 + s * (2589 ±0)` - // Minimum execution time: 11_121 nanoseconds. - Weight::from_parts(30_946_234, 8303) - // Standard Error: 51_947 - .saturating_add(Weight::from_parts(4_241_610, 0).saturating_mul(s.into())) + // Minimum execution time: 10_940 nanoseconds. + Weight::from_parts(29_044_098, 8303) + // Standard Error: 11_640 + .saturating_add(Weight::from_parts(4_158_409, 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)) @@ -115,10 +115,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `194 + p * (32 ±0)` // Estimated: `8303` - // Minimum execution time: 10_961 nanoseconds. - Weight::from_parts(27_050_993, 8303) - // Standard Error: 7_711 - .saturating_add(Weight::from_parts(1_722_355, 0).saturating_mul(p.into())) + // Minimum execution time: 11_140 nanoseconds. + Weight::from_parts(26_473_153, 8303) + // Standard Error: 6_252 + .saturating_add(Weight::from_parts(1_736_112, 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()))) @@ -136,14 +136,14 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `471 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `8303` - // Minimum execution time: 57_681 nanoseconds. - Weight::from_parts(33_121_561, 8303) - // Standard Error: 57_995 - .saturating_add(Weight::from_parts(443_118, 0).saturating_mul(r.into())) - // Standard Error: 6_753 - .saturating_add(Weight::from_parts(1_722_243, 0).saturating_mul(s.into())) - // Standard Error: 6_753 - .saturating_add(Weight::from_parts(374_023, 0).saturating_mul(x.into())) + // Minimum execution time: 56_431 nanoseconds. + Weight::from_parts(36_897_307, 8303) + // Standard Error: 53_016 + .saturating_add(Weight::from_parts(190_947, 0).saturating_mul(r.into())) + // Standard Error: 6_173 + .saturating_add(Weight::from_parts(1_747_584, 0).saturating_mul(s.into())) + // Standard Error: 6_173 + .saturating_add(Weight::from_parts(335_739, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -154,14 +154,16 @@ impl pallet_identity::weights::WeightInfo for WeightInf /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(4838), added: 7313, mode: `MaxEncodedLen`) /// The range of component `r` is `[1, 8]`. /// The range of component `x` is `[0, 64]`. - fn request_judgement(_r: u32, x: u32) -> Weight { + fn request_judgement(r: u32, x: u32) -> Weight { // Proof Size summary in bytes: // Measured: `367 + r * (57 ±0) + x * (66 ±0)` // Estimated: `8303` - // Minimum execution time: 36_451 nanoseconds. - Weight::from_parts(52_476_624, 8303) - // Standard Error: 12_317 - .saturating_add(Weight::from_parts(561_685, 0).saturating_mul(x.into())) + // Minimum execution time: 37_161 nanoseconds. + Weight::from_parts(35_806_339, 8303) + // Standard Error: 32_403 + .saturating_add(Weight::from_parts(347_030, 0).saturating_mul(r.into())) + // Standard Error: 3_763 + .saturating_add(Weight::from_parts(669_233, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -173,12 +175,12 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `398 + x * (66 ±0)` // Estimated: `8303` - // Minimum execution time: 33_951 nanoseconds. - Weight::from_parts(32_485_363, 8303) - // Standard Error: 30_691 - .saturating_add(Weight::from_parts(376_729, 0).saturating_mul(r.into())) - // Standard Error: 3_565 - .saturating_add(Weight::from_parts(631_886, 0).saturating_mul(x.into())) + // Minimum execution time: 34_651 nanoseconds. + Weight::from_parts(34_913_667, 8303) + // Standard Error: 18_225 + .saturating_add(Weight::from_parts(117_675, 0).saturating_mul(r.into())) + // Standard Error: 2_116 + .saturating_add(Weight::from_parts(636_465, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -189,10 +191,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `1942` - // Minimum execution time: 9_240 nanoseconds. - Weight::from_parts(9_898_407, 1942) - // Standard Error: 7_804 - .saturating_add(Weight::from_parts(178_705, 0).saturating_mul(r.into())) + // Minimum execution time: 9_151 nanoseconds. + Weight::from_parts(9_889_249, 1942) + // Standard Error: 5_583 + .saturating_add(Weight::from_parts(178_604, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -203,10 +205,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `1942` - // Minimum execution time: 8_380 nanoseconds. - Weight::from_parts(9_219_043, 1942) - // Standard Error: 7_235 - .saturating_add(Weight::from_parts(131_081, 0).saturating_mul(r.into())) + // Minimum execution time: 8_310 nanoseconds. + Weight::from_parts(9_046_755, 1942) + // Standard Error: 5_582 + .saturating_add(Weight::from_parts(123_880, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -217,10 +219,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `1942` - // Minimum execution time: 8_290 nanoseconds. - Weight::from_parts(8_954_875, 1942) - // Standard Error: 6_957 - .saturating_add(Weight::from_parts(151_835, 0).saturating_mul(r.into())) + // Minimum execution time: 8_171 nanoseconds. + Weight::from_parts(8_747_308, 1942) + // Standard Error: 5_873 + .saturating_add(Weight::from_parts(162_510, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -230,16 +232,14 @@ impl pallet_identity::weights::WeightInfo for WeightInf /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(4838), added: 7313, mode: `MaxEncodedLen`) /// The range of component `r` is `[1, 7]`. /// The range of component `x` is `[0, 64]`. - fn provide_judgement(r: u32, x: u32) -> Weight { + fn provide_judgement(_r: u32, x: u32) -> Weight { // Proof Size summary in bytes: // Measured: `445 + r * (57 ±0) + x * (66 ±0)` // Estimated: `8303` - // Minimum execution time: 26_260 nanoseconds. - Weight::from_parts(26_430_246, 8303) - // Standard Error: 43_942 - .saturating_add(Weight::from_parts(89_107, 0).saturating_mul(r.into())) - // Standard Error: 4_490 - .saturating_add(Weight::from_parts(987_183, 0).saturating_mul(x.into())) + // Minimum execution time: 25_832 nanoseconds. + Weight::from_parts(27_647_734, 8303) + // Standard Error: 3_835 + .saturating_add(Weight::from_parts(1_016_392, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -258,14 +258,14 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `826 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `8303` - // Minimum execution time: 79_731 nanoseconds. - Weight::from_parts(51_352_548, 8303) - // Standard Error: 72_069 - .saturating_add(Weight::from_parts(562_966, 0).saturating_mul(r.into())) - // Standard Error: 8_392 - .saturating_add(Weight::from_parts(1_760_970, 0).saturating_mul(s.into())) - // Standard Error: 8_392 - .saturating_add(Weight::from_parts(455_995, 0).saturating_mul(x.into())) + // Minimum execution time: 79_812 nanoseconds. + Weight::from_parts(60_363_180, 8303) + // Standard Error: 51_080 + .saturating_add(Weight::from_parts(146_545, 0).saturating_mul(r.into())) + // Standard Error: 5_948 + .saturating_add(Weight::from_parts(1_756_611, 0).saturating_mul(s.into())) + // Standard Error: 5_948 + .saturating_add(Weight::from_parts(356_991, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -281,10 +281,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `323 + s * (41 ±0)` // Estimated: `8303` - // Minimum execution time: 33_211 nanoseconds. - Weight::from_parts(38_752_704, 8303) - // Standard Error: 4_482 - .saturating_add(Weight::from_parts(128_208, 0).saturating_mul(s.into())) + // Minimum execution time: 34_070 nanoseconds. + Weight::from_parts(39_664_475, 8303) + // Standard Error: 5_065 + .saturating_add(Weight::from_parts(103_964, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -297,10 +297,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `432 + s * (7 ±0)` // Estimated: `8303` - // Minimum execution time: 15_100 nanoseconds. - Weight::from_parts(17_219_992, 8303) - // Standard Error: 1_600 - .saturating_add(Weight::from_parts(53_129, 0).saturating_mul(s.into())) + // Minimum execution time: 14_980 nanoseconds. + Weight::from_parts(17_574_120, 8303) + // Standard Error: 1_703 + .saturating_add(Weight::from_parts(39_579, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -315,10 +315,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `480 + s * (39 ±0)` // Estimated: `8303` - // Minimum execution time: 37_551 nanoseconds. - Weight::from_parts(40_470_778, 8303) - // Standard Error: 3_963 - .saturating_add(Weight::from_parts(108_592, 0).saturating_mul(s.into())) + // Minimum execution time: 38_051 nanoseconds. + Weight::from_parts(40_609_060, 8303) + // Standard Error: 2_471 + .saturating_add(Weight::from_parts(93_132, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -333,10 +333,10 @@ impl pallet_identity::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `583 + s * (42 ±0)` // Estimated: `5571` - // Minimum execution time: 28_281 nanoseconds. - Weight::from_parts(30_998_496, 5571) - // Standard Error: 2_453 - .saturating_add(Weight::from_parts(105_811, 0).saturating_mul(s.into())) + // Minimum execution time: 28_860 nanoseconds. + Weight::from_parts(31_107_615, 5571) + // Standard Error: 2_093 + .saturating_add(Weight::from_parts(105_202, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/common/src/weights/pallet_membership.rs b/runtime/common/src/weights/pallet_membership.rs index 2a08961de..dc94cf0c0 100644 --- a/runtime/common/src/weights/pallet_membership.rs +++ b/runtime/common/src/weights/pallet_membership.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_membership //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -65,10 +65,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `135 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 19_140 nanoseconds. - Weight::from_parts(20_214_807, 4687) - // Standard Error: 1_022 - .saturating_add(Weight::from_parts(37_364, 0).saturating_mul(m.into())) + // Minimum execution time: 19_490 nanoseconds. + Weight::from_parts(20_579_688, 4687) + // Standard Error: 921 + .saturating_add(Weight::from_parts(40_438, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -88,10 +88,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `239 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 21_751 nanoseconds. - Weight::from_parts(23_357_804, 4687) - // Standard Error: 960 - .saturating_add(Weight::from_parts(26_749, 0).saturating_mul(m.into())) + // Minimum execution time: 22_690 nanoseconds. + Weight::from_parts(23_795_130, 4687) + // Standard Error: 964 + .saturating_add(Weight::from_parts(30_543, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -111,10 +111,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `239 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 21_730 nanoseconds. - Weight::from_parts(23_160_010, 4687) - // Standard Error: 1_101 - .saturating_add(Weight::from_parts(47_521, 0).saturating_mul(m.into())) + // Minimum execution time: 22_541 nanoseconds. + Weight::from_parts(23_622_603, 4687) + // Standard Error: 1_292 + .saturating_add(Weight::from_parts(50_057, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -134,10 +134,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `239 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 21_770 nanoseconds. - Weight::from_parts(23_639_291, 4687) - // Standard Error: 1_255 - .saturating_add(Weight::from_parts(162_892, 0).saturating_mul(m.into())) + // Minimum execution time: 21_700 nanoseconds. + Weight::from_parts(23_685_037, 4687) + // Standard Error: 1_430 + .saturating_add(Weight::from_parts(177_796, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -157,10 +157,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `239 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 22_621 nanoseconds. - Weight::from_parts(24_076_554, 4687) - // Standard Error: 1_140 - .saturating_add(Weight::from_parts(51_340, 0).saturating_mul(m.into())) + // Minimum execution time: 23_461 nanoseconds. + Weight::from_parts(24_947_150, 4687) + // Standard Error: 1_644 + .saturating_add(Weight::from_parts(49_382, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -176,10 +176,10 @@ impl pallet_membership::weights::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `104 + m * (32 ±0)` // Estimated: `4687 + m * (32 ±0)` - // Minimum execution time: 9_911 nanoseconds. - Weight::from_parts(10_656_249, 4687) - // Standard Error: 535 - .saturating_add(Weight::from_parts(14_347, 0).saturating_mul(m.into())) + // Minimum execution time: 10_210 nanoseconds. + Weight::from_parts(10_982_994, 4687) + // Standard Error: 621 + .saturating_add(Weight::from_parts(15_701, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) @@ -189,14 +189,11 @@ impl pallet_membership::weights::WeightInfo for WeightI /// Storage: `AdvisoryCommittee::Prime` (r:0 w:1) /// Proof: `AdvisoryCommittee::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `m` is `[1, 100]`. - fn clear_prime(m: u32) -> Weight { + fn clear_prime(_m: u32) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_430 nanoseconds. - Weight::from_parts(3_906_422, 0) - // Standard Error: 282 - .saturating_add(Weight::from_parts(725, 0).saturating_mul(m.into())) - .saturating_add(T::DbWeight::get().writes(2)) + // Minimum execution time: 3_530 nanoseconds. + Weight::from_parts(4_001_974, 0).saturating_add(T::DbWeight::get().writes(2)) } } diff --git a/runtime/common/src/weights/pallet_multisig.rs b/runtime/common/src/weights/pallet_multisig.rs index bb3d8163a..f0bc1e71b 100644 --- a/runtime/common/src/weights/pallet_multisig.rs +++ b/runtime/common/src/weights/pallet_multisig.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_multisig //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -57,10 +57,10 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 14_540 nanoseconds. - Weight::from_parts(16_492_945, 0) + // Minimum execution time: 14_031 nanoseconds. + Weight::from_parts(16_133_881, 0) // Standard Error: 8 - .saturating_add(Weight::from_parts(467, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(511, 0).saturating_mul(z.into())) } /// Storage: `Multisig::Multisigs` (r:1 w:1) /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(3350), added: 5825, mode: `MaxEncodedLen`) @@ -70,12 +70,12 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `275 + s * (1 ±0)` // Estimated: `6815` - // Minimum execution time: 47_391 nanoseconds. - Weight::from_parts(40_119_455, 6815) - // Standard Error: 1_972 - .saturating_add(Weight::from_parts(109_190, 0).saturating_mul(s.into())) - // Standard Error: 19 - .saturating_add(Weight::from_parts(1_655, 0).saturating_mul(z.into())) + // Minimum execution time: 48_291 nanoseconds. + Weight::from_parts(42_066_474, 6815) + // Standard Error: 2_296 + .saturating_add(Weight::from_parts(95_309, 0).saturating_mul(s.into())) + // Standard Error: 22 + .saturating_add(Weight::from_parts(1_586, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -87,12 +87,12 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `252` // Estimated: `6815` - // Minimum execution time: 30_861 nanoseconds. - Weight::from_parts(24_416_204, 6815) - // Standard Error: 1_236 - .saturating_add(Weight::from_parts(93_258, 0).saturating_mul(s.into())) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_570, 0).saturating_mul(z.into())) + // Minimum execution time: 31_041 nanoseconds. + Weight::from_parts(24_334_832, 6815) + // Standard Error: 1_188 + .saturating_add(Weight::from_parts(91_441, 0).saturating_mul(s.into())) + // Standard Error: 11 + .saturating_add(Weight::from_parts(1_580, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -106,12 +106,12 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `362 + s * (33 ±0)` // Estimated: `6815` - // Minimum execution time: 55_211 nanoseconds. - Weight::from_parts(45_366_942, 6815) - // Standard Error: 1_775 - .saturating_add(Weight::from_parts(127_546, 0).saturating_mul(s.into())) - // Standard Error: 17 - .saturating_add(Weight::from_parts(1_690, 0).saturating_mul(z.into())) + // Minimum execution time: 55_241 nanoseconds. + Weight::from_parts(45_431_713, 6815) + // Standard Error: 1_894 + .saturating_add(Weight::from_parts(125_664, 0).saturating_mul(s.into())) + // Standard Error: 18 + .saturating_add(Weight::from_parts(1_698, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -122,10 +122,10 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `279 + s * (1 ±0)` // Estimated: `6815` - // Minimum execution time: 36_421 nanoseconds. - Weight::from_parts(39_635_679, 6815) - // Standard Error: 1_998 - .saturating_add(Weight::from_parts(102_944, 0).saturating_mul(s.into())) + // Minimum execution time: 37_711 nanoseconds. + Weight::from_parts(40_100_462, 6815) + // Standard Error: 1_848 + .saturating_add(Weight::from_parts(97_257, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -136,10 +136,10 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `252` // Estimated: `6815` - // Minimum execution time: 21_391 nanoseconds. - Weight::from_parts(22_425_605, 6815) - // Standard Error: 1_445 - .saturating_add(Weight::from_parts(101_371, 0).saturating_mul(s.into())) + // Minimum execution time: 21_730 nanoseconds. + Weight::from_parts(22_802_885, 6815) + // Standard Error: 1_215 + .saturating_add(Weight::from_parts(91_346, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -150,10 +150,10 @@ impl pallet_multisig::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `428 + s * (1 ±0)` // Estimated: `6815` - // Minimum execution time: 38_660 nanoseconds. - Weight::from_parts(40_879_796, 6815) - // Standard Error: 1_474 - .saturating_add(Weight::from_parts(87_791, 0).saturating_mul(s.into())) + // Minimum execution time: 38_232 nanoseconds. + Weight::from_parts(40_217_213, 6815) + // Standard Error: 1_409 + .saturating_add(Weight::from_parts(96_936, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_parachain_staking.rs b/runtime/common/src/weights/pallet_parachain_staking.rs index 16b78caa1..15c25d8ba 100644 --- a/runtime/common/src/weights/pallet_parachain_staking.rs +++ b/runtime/common/src/weights/pallet_parachain_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_parachain_staking //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -58,8 +58,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `88` // Estimated: `1573` - // Minimum execution time: 12_750 nanoseconds. - Weight::from_parts(13_320_000, 1573) + // Minimum execution time: 12_100 nanoseconds. + Weight::from_parts(12_660_000, 1573) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -69,8 +69,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `88` // Estimated: `1573` - // Minimum execution time: 41_701 nanoseconds. - Weight::from_parts(42_771_000, 1573) + // Minimum execution time: 40_521 nanoseconds. + Weight::from_parts(41_081_000, 1573) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -80,8 +80,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `21` // Estimated: `1506` - // Minimum execution time: 11_501 nanoseconds. - Weight::from_parts(12_070_000, 1506) + // Minimum execution time: 10_891 nanoseconds. + Weight::from_parts(12_610_000, 1506) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -91,8 +91,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `21` // Estimated: `1506` - // Minimum execution time: 11_220 nanoseconds. - Weight::from_parts(11_840_000, 1506) + // Minimum execution time: 10_561 nanoseconds. + Weight::from_parts(11_231_000, 1506) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -102,8 +102,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `28` // Estimated: `1513` - // Minimum execution time: 12_491 nanoseconds. - Weight::from_parts(13_000_000, 1513) + // Minimum execution time: 11_910 nanoseconds. + Weight::from_parts(12_570_000, 1513) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -113,8 +113,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `27` // Estimated: `1512` - // Minimum execution time: 11_211 nanoseconds. - Weight::from_parts(11_700_000, 1512) + // Minimum execution time: 10_500 nanoseconds. + Weight::from_parts(11_120_000, 1512) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -126,8 +126,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `116` // Estimated: `1601` - // Minimum execution time: 45_401 nanoseconds. - Weight::from_parts(46_321_000, 1601) + // Minimum execution time: 44_331 nanoseconds. + Weight::from_parts(44_771_000, 1601) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -154,10 +154,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `1212 + x * (52 ±0)` // Estimated: `4764 + x * (53 ±0)` - // Minimum execution time: 60_852 nanoseconds. - Weight::from_parts(69_052_396, 4764) - // Standard Error: 2_376 - .saturating_add(Weight::from_parts(101_641, 0).saturating_mul(x.into())) + // Minimum execution time: 59_762 nanoseconds. + Weight::from_parts(67_428_342, 4764) + // Standard Error: 1_790 + .saturating_add(Weight::from_parts(100_681, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) .saturating_add(Weight::from_parts(0, 53).saturating_mul(x.into())) @@ -171,10 +171,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `769 + x * (49 ±0)` // Estimated: `4109 + x * (50 ±0)` - // Minimum execution time: 22_450 nanoseconds. - Weight::from_parts(27_739_839, 4109) - // Standard Error: 2_293 - .saturating_add(Weight::from_parts(87_842, 0).saturating_mul(x.into())) + // Minimum execution time: 21_641 nanoseconds. + Weight::from_parts(28_154_053, 4109) + // Standard Error: 1_865 + .saturating_add(Weight::from_parts(74_510, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 50).saturating_mul(x.into())) @@ -204,10 +204,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `283 + x * (530 ±0)` // Estimated: `4888 + x * (3774 ±0)` - // Minimum execution time: 113_953 nanoseconds. - Weight::from_parts(115_423_000, 4888) - // Standard Error: 129_842 - .saturating_add(Weight::from_parts(43_888_133, 0).saturating_mul(x.into())) + // Minimum execution time: 111_422 nanoseconds. + Weight::from_parts(112_922_000, 4888) + // Standard Error: 127_934 + .saturating_add(Weight::from_parts(44_156_333, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(x.into()))) .saturating_add(T::DbWeight::get().writes(5)) @@ -240,10 +240,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `277 + x * (531 ±0)` // Estimated: `4888 + x * (3774 ±0)` - // Minimum execution time: 104_643 nanoseconds. - Weight::from_parts(105_892_000, 4888) - // Standard Error: 54_336 - .saturating_add(Weight::from_parts(45_946_893, 0).saturating_mul(x.into())) + // Minimum execution time: 102_432 nanoseconds. + Weight::from_parts(104_002_000, 4888) + // Standard Error: 57_729 + .saturating_add(Weight::from_parts(46_385_902, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(x.into()))) .saturating_add(T::DbWeight::get().writes(5)) @@ -259,10 +259,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `725 + x * (49 ±0)` // Estimated: `4065 + x * (50 ±0)` - // Minimum execution time: 21_350 nanoseconds. - Weight::from_parts(25_668_081, 4065) - // Standard Error: 1_482 - .saturating_add(Weight::from_parts(100_441, 0).saturating_mul(x.into())) + // Minimum execution time: 20_121 nanoseconds. + Weight::from_parts(25_556_595, 4065) + // Standard Error: 1_393 + .saturating_add(Weight::from_parts(92_746, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 50).saturating_mul(x.into())) @@ -276,10 +276,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `638 + x * (49 ±0)` // Estimated: `4024 + x * (50 ±0)` - // Minimum execution time: 19_670 nanoseconds. - Weight::from_parts(24_709_128, 4024) - // Standard Error: 1_355 - .saturating_add(Weight::from_parts(83_124, 0).saturating_mul(x.into())) + // Minimum execution time: 19_790 nanoseconds. + Weight::from_parts(24_328_108, 4024) + // Standard Error: 1_375 + .saturating_add(Weight::from_parts(84_785, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 50).saturating_mul(x.into())) @@ -293,10 +293,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `590 + x * (49 ±0)` // Estimated: `3976 + x * (50 ±0)` - // Minimum execution time: 20_100 nanoseconds. - Weight::from_parts(24_707_639, 3976) - // Standard Error: 1_362 - .saturating_add(Weight::from_parts(95_552, 0).saturating_mul(x.into())) + // Minimum execution time: 19_680 nanoseconds. + Weight::from_parts(24_490_867, 3976) + // Standard Error: 1_595 + .saturating_add(Weight::from_parts(92_031, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 50).saturating_mul(x.into())) @@ -318,10 +318,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `1522 + x * (52 ±0)` // Estimated: `4764 + x * (54 ±0)` - // Minimum execution time: 51_941 nanoseconds. - Weight::from_parts(60_792_210, 4764) - // Standard Error: 2_140 - .saturating_add(Weight::from_parts(109_115, 0).saturating_mul(x.into())) + // Minimum execution time: 51_981 nanoseconds. + Weight::from_parts(60_236_529, 4764) + // Standard Error: 2_357 + .saturating_add(Weight::from_parts(108_029, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) .saturating_add(Weight::from_parts(0, 54).saturating_mul(x.into())) @@ -332,8 +332,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `184` // Estimated: `3649` - // Minimum execution time: 17_501 nanoseconds. - Weight::from_parts(18_691_000, 3649) + // Minimum execution time: 17_181 nanoseconds. + Weight::from_parts(17_770_000, 3649) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -354,10 +354,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `1538 + x * (52 ±0)` // Estimated: `4764 + x * (54 ±0)` - // Minimum execution time: 52_861 nanoseconds. - Weight::from_parts(60_523_085, 4764) - // Standard Error: 2_009 - .saturating_add(Weight::from_parts(98_705, 0).saturating_mul(x.into())) + // Minimum execution time: 52_751 nanoseconds. + Weight::from_parts(59_731_490, 4764) + // Standard Error: 1_921 + .saturating_add(Weight::from_parts(98_854, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) .saturating_add(Weight::from_parts(0, 54).saturating_mul(x.into())) @@ -379,10 +379,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `1518 + x * (52 ±0)` // Estimated: `4764 + x * (54 ±0)` - // Minimum execution time: 50_652 nanoseconds. - Weight::from_parts(58_651_906, 4764) - // Standard Error: 1_874 - .saturating_add(Weight::from_parts(91_901, 0).saturating_mul(x.into())) + // Minimum execution time: 51_071 nanoseconds. + Weight::from_parts(57_315_492, 4764) + // Standard Error: 1_864 + .saturating_add(Weight::from_parts(94_490, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) .saturating_add(Weight::from_parts(0, 54).saturating_mul(x.into())) @@ -393,8 +393,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `204` // Estimated: `3669` - // Minimum execution time: 15_201 nanoseconds. - Weight::from_parts(15_850_000, 3669) + // Minimum execution time: 15_611 nanoseconds. + Weight::from_parts(15_830_000, 3669) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -420,12 +420,12 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `2215 + x * (103 ±0) + y * (52 ±0)` // Estimated: `5422 + x * (106 ±0) + y * (53 ±0)` - // Minimum execution time: 94_472 nanoseconds. - Weight::from_parts(86_499_687, 5422) - // Standard Error: 4_996 - .saturating_add(Weight::from_parts(161_425, 0).saturating_mul(x.into())) - // Standard Error: 1_639 - .saturating_add(Weight::from_parts(70_126, 0).saturating_mul(y.into())) + // Minimum execution time: 94_962 nanoseconds. + Weight::from_parts(86_190_304, 5422) + // Standard Error: 3_475 + .saturating_add(Weight::from_parts(149_424, 0).saturating_mul(x.into())) + // Standard Error: 1_140 + .saturating_add(Weight::from_parts(64_538, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(7)) .saturating_add(Weight::from_parts(0, 106).saturating_mul(x.into())) @@ -440,10 +440,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `688 + x * (54 ±0)` // Estimated: `4097 + x * (54 ±0)` - // Minimum execution time: 19_730 nanoseconds. - Weight::from_parts(26_076_954, 4097) - // Standard Error: 1_614 - .saturating_add(Weight::from_parts(89_336, 0).saturating_mul(x.into())) + // Minimum execution time: 18_930 nanoseconds. + Weight::from_parts(26_773_126, 4097) + // Standard Error: 1_015 + .saturating_add(Weight::from_parts(81_776, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 54).saturating_mul(x.into())) @@ -471,10 +471,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `2052 + x * (103 ±0)` // Estimated: `5592 + x * (102 ±0)` - // Minimum execution time: 71_562 nanoseconds. - Weight::from_parts(86_627_790, 5592) - // Standard Error: 1_719 - .saturating_add(Weight::from_parts(140_925, 0).saturating_mul(x.into())) + // Minimum execution time: 70_061 nanoseconds. + Weight::from_parts(86_398_038, 5592) + // Standard Error: 1_675 + .saturating_add(Weight::from_parts(134_960, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(7)) .saturating_add(Weight::from_parts(0, 102).saturating_mul(x.into())) @@ -488,10 +488,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `688 + x * (54 ±0)` // Estimated: `4097 + x * (54 ±0)` - // Minimum execution time: 19_901 nanoseconds. - Weight::from_parts(27_349_086, 4097) - // Standard Error: 1_455 - .saturating_add(Weight::from_parts(85_443, 0).saturating_mul(x.into())) + // Minimum execution time: 19_341 nanoseconds. + Weight::from_parts(26_717_986, 4097) + // Standard Error: 985 + .saturating_add(Weight::from_parts(83_692, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 54).saturating_mul(x.into())) @@ -520,8 +520,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `1053` // Estimated: `4764` - // Minimum execution time: 88_352 nanoseconds. - Weight::from_parts(91_162_000, 4764) + // Minimum execution time: 88_032 nanoseconds. + Weight::from_parts(94_162_000, 4764) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(8)) } @@ -551,8 +551,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `50108` // Estimated: `53573` - // Minimum execution time: 167_624 nanoseconds. - Weight::from_parts(177_823_000, 53573) + // Minimum execution time: 165_044 nanoseconds. + Weight::from_parts(170_093_000, 53573) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().writes(10)) } @@ -580,8 +580,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `38517` // Estimated: `41982` - // Minimum execution time: 134_853 nanoseconds. - Weight::from_parts(139_443_000, 41982) + // Minimum execution time: 133_702 nanoseconds. + Weight::from_parts(136_343_000, 41982) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(9)) } @@ -594,10 +594,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `728 + x * (54 ±0)` // Estimated: `4143 + x * (55 ±0)` - // Minimum execution time: 22_061 nanoseconds. - Weight::from_parts(30_422_441, 4143) - // Standard Error: 989 - .saturating_add(Weight::from_parts(71_510, 0).saturating_mul(x.into())) + // Minimum execution time: 21_781 nanoseconds. + Weight::from_parts(30_265_668, 4143) + // Standard Error: 743 + .saturating_add(Weight::from_parts(69_748, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 55).saturating_mul(x.into())) @@ -620,8 +620,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `344` // Estimated: `3809` - // Minimum execution time: 38_961 nanoseconds. - Weight::from_parts(41_681_000, 3809) + // Minimum execution time: 39_691 nanoseconds. + Weight::from_parts(41_021_000, 3809) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -634,10 +634,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `86 + y * (48 ±0)` // Estimated: `3550 + y * (48 ±0)` - // Minimum execution time: 6_430 nanoseconds. - Weight::from_parts(7_955_662, 3550) - // Standard Error: 1_500 - .saturating_add(Weight::from_parts(45_357, 0).saturating_mul(y.into())) + // Minimum execution time: 6_381 nanoseconds. + Weight::from_parts(7_637_274, 3550) + // Standard Error: 489 + .saturating_add(Weight::from_parts(44_410, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 48).saturating_mul(y.into())) } @@ -663,12 +663,12 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `0 + x * (5058 ±0) + y * (2400 ±0)` // Estimated: `3778 + x * (4440 ±53) + y * (851 ±26)` - // Minimum execution time: 25_291 nanoseconds. - Weight::from_parts(25_811_000, 3778) - // Standard Error: 100_977 - .saturating_add(Weight::from_parts(21_069_205, 0).saturating_mul(x.into())) - // Standard Error: 50_354 - .saturating_add(Weight::from_parts(1_383_596, 0).saturating_mul(y.into())) + // Minimum execution time: 25_371 nanoseconds. + Weight::from_parts(26_080_000, 3778) + // Standard Error: 129_482 + .saturating_add(Weight::from_parts(21_054_453, 0).saturating_mul(x.into())) + // Standard Error: 64_569 + .saturating_add(Weight::from_parts(1_515_822, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(x.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -702,13 +702,13 @@ impl pallet_parachain_staking::weights::WeightInfo for fn pay_one_collator_reward_best(x: u32, y: u32, z: u32) -> Weight { // Proof Size summary in bytes: // Measured: `0 + x * (483 ±0) + y * (206 ±0) + z * (53 ±0)` - // Estimated: `151958 + x * (2607 ±19) + y * (2241 ±19) + z * (37 ±1)` - // Minimum execution time: 310 nanoseconds. - Weight::from_parts(360_000, 151958) - // Standard Error: 673_485 - .saturating_add(Weight::from_parts(64_993_666, 0).saturating_mul(x.into())) - // Standard Error: 673_485 - .saturating_add(Weight::from_parts(38_052_614, 0).saturating_mul(y.into())) + // Estimated: `151958 + x * (2607 ±21) + y * (2241 ±21) + z * (37 ±1)` + // Minimum execution time: 330 nanoseconds. + Weight::from_parts(380_000, 151958) + // Standard Error: 682_790 + .saturating_add(Weight::from_parts(64_806_020, 0).saturating_mul(x.into())) + // Standard Error: 682_790 + .saturating_add(Weight::from_parts(38_117_645, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(x.into()))) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(y.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(x.into()))) @@ -734,10 +734,10 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `389 + y * (187 ±0)` // Estimated: `6323 + y * (2607 ±0)` - // Minimum execution time: 47_841 nanoseconds. - Weight::from_parts(24_370_035, 6323) - // Standard Error: 19_691 - .saturating_add(Weight::from_parts(19_914_060, 0).saturating_mul(y.into())) + // Minimum execution time: 46_951 nanoseconds. + Weight::from_parts(38_635_406, 6323) + // Standard Error: 18_974 + .saturating_add(Weight::from_parts(19_732_542, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(y.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -748,8 +748,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_350 nanoseconds. - Weight::from_parts(1_480_000, 0) + // Minimum execution time: 1_230 nanoseconds. + Weight::from_parts(1_390_000, 0) } /// Storage: `ParachainStaking::DelegatorState` (r:1 w:0) /// Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -761,12 +761,12 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `655 + x * (34 ±0) + y * (48 ±0)` // Estimated: `3997 + x * (35 ±0) + y * (49 ±0)` - // Minimum execution time: 25_790 nanoseconds. - Weight::from_parts(28_072_776, 3997) - // Standard Error: 734 - .saturating_add(Weight::from_parts(54_585, 0).saturating_mul(x.into())) - // Standard Error: 2_198 - .saturating_add(Weight::from_parts(32_939, 0).saturating_mul(y.into())) + // Minimum execution time: 25_771 nanoseconds. + Weight::from_parts(27_268_970, 3997) + // Standard Error: 454 + .saturating_add(Weight::from_parts(53_234, 0).saturating_mul(x.into())) + // Standard Error: 1_361 + .saturating_add(Weight::from_parts(34_426, 0).saturating_mul(y.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 35).saturating_mul(x.into())) @@ -799,14 +799,14 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `0 + x * (84 ±0) + y * (33 ±0) + z * (114 ±0)` // Estimated: `34219 + x * (61 ±0) + y * (31 ±0) + z * (105 ±1)` - // Minimum execution time: 100_912 nanoseconds. - Weight::from_parts(87_816_536, 34219) - // Standard Error: 1_780 - .saturating_add(Weight::from_parts(119_859, 0).saturating_mul(x.into())) - // Standard Error: 1_784 - .saturating_add(Weight::from_parts(25_504, 0).saturating_mul(y.into())) - // Standard Error: 6_285 - .saturating_add(Weight::from_parts(125_970, 0).saturating_mul(z.into())) + // Minimum execution time: 100_442 nanoseconds. + Weight::from_parts(81_086_712, 34219) + // Standard Error: 1_413 + .saturating_add(Weight::from_parts(121_382, 0).saturating_mul(x.into())) + // Standard Error: 1_416 + .saturating_add(Weight::from_parts(32_067, 0).saturating_mul(y.into())) + // Standard Error: 4_989 + .saturating_add(Weight::from_parts(145_422, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(8)) .saturating_add(Weight::from_parts(0, 61).saturating_mul(x.into())) @@ -839,8 +839,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `63204` // Estimated: `69144` - // Minimum execution time: 243_907 nanoseconds. - Weight::from_parts(253_195_000, 69144) + // Minimum execution time: 241_865 nanoseconds. + Weight::from_parts(259_217_000, 69144) .saturating_add(T::DbWeight::get().reads(15)) .saturating_add(T::DbWeight::get().writes(13)) } @@ -850,8 +850,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `107` // Estimated: `3597` - // Minimum execution time: 20_700 nanoseconds. - Weight::from_parts(21_161_000, 3597) + // Minimum execution time: 20_281 nanoseconds. + Weight::from_parts(20_911_000, 3597) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -873,8 +873,8 @@ impl pallet_parachain_staking::weights::WeightInfo for // Proof Size summary in bytes: // Measured: `14976` // Estimated: `18441` - // Minimum execution time: 66_662 nanoseconds. - Weight::from_parts(71_142_000, 18441) + // Minimum execution time: 65_391 nanoseconds. + Weight::from_parts(68_361_000, 18441) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/common/src/weights/pallet_preimage.rs b/runtime/common/src/weights/pallet_preimage.rs index 7a09d418c..5ba403996 100644 --- a/runtime/common/src/weights/pallet_preimage.rs +++ b/runtime/common/src/weights/pallet_preimage.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_preimage //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -61,10 +61,10 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `147` // Estimated: `3556` - // Minimum execution time: 34_661 nanoseconds. - Weight::from_parts(5_299_709, 3556) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_762, 0).saturating_mul(s.into())) + // Minimum execution time: 35_630 nanoseconds. + Weight::from_parts(36_041_000, 3556) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_830, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -77,10 +77,10 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 18_730 nanoseconds. - Weight::from_parts(19_171_000, 3556) - // Standard Error: 0 - .saturating_add(Weight::from_parts(1_749, 0).saturating_mul(s.into())) + // Minimum execution time: 19_450 nanoseconds. + Weight::from_parts(20_040_000, 3556) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_799, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -93,10 +93,10 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 18_100 nanoseconds. - Weight::from_parts(18_590_000, 3556) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_758, 0).saturating_mul(s.into())) + // Minimum execution time: 19_010 nanoseconds. + Weight::from_parts(19_230_000, 3556) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_782, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -108,8 +108,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `293` // Estimated: `3556` - // Minimum execution time: 50_121 nanoseconds. - Weight::from_parts(52_361_000, 3556) + // Minimum execution time: 46_451 nanoseconds. + Weight::from_parts(49_611_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -121,8 +121,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 28_911 nanoseconds. - Weight::from_parts(32_111_000, 3556) + // Minimum execution time: 26_551 nanoseconds. + Weight::from_parts(29_460_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -132,8 +132,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `188` // Estimated: `3556` - // Minimum execution time: 25_380 nanoseconds. - Weight::from_parts(26_781_000, 3556) + // Minimum execution time: 24_271 nanoseconds. + Weight::from_parts(25_451_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -143,8 +143,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 16_371 nanoseconds. - Weight::from_parts(17_950_000, 3556) + // Minimum execution time: 15_400 nanoseconds. + Weight::from_parts(17_360_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -154,8 +154,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 18_760 nanoseconds. - Weight::from_parts(19_761_000, 3556) + // Minimum execution time: 18_320 nanoseconds. + Weight::from_parts(19_450_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,8 +165,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_760 nanoseconds. - Weight::from_parts(12_321_000, 3556) + // Minimum execution time: 11_890 nanoseconds. + Weight::from_parts(12_460_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -178,8 +178,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 26_531 nanoseconds. - Weight::from_parts(28_531_000, 3556) + // Minimum execution time: 25_290 nanoseconds. + Weight::from_parts(27_231_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -189,8 +189,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_280 nanoseconds. - Weight::from_parts(11_931_000, 3556) + // Minimum execution time: 11_480 nanoseconds. + Weight::from_parts(12_241_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -200,8 +200,8 @@ impl pallet_preimage::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_430 nanoseconds. - Weight::from_parts(12_170_000, 3556) + // Minimum execution time: 11_790 nanoseconds. + Weight::from_parts(12_400_000, 3556) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/common/src/weights/pallet_proxy.rs b/runtime/common/src/weights/pallet_proxy.rs index 77d3eb434..d691137fc 100644 --- a/runtime/common/src/weights/pallet_proxy.rs +++ b/runtime/common/src/weights/pallet_proxy.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_proxy //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -59,10 +59,10 @@ impl pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_proxy::weights::WeightInfo for WeightInfo pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `35` // Estimated: `1493` - // Minimum execution time: 4_830 nanoseconds. - Weight::from_parts(5_180_000, 1493) + // Minimum execution time: 4_810 nanoseconds. + Weight::from_parts(5_030_000, 1493) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -70,10 +70,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `85 + s * (181 ±0)` // Estimated: `112539` - // Minimum execution time: 4_500 nanoseconds. - Weight::from_parts(10_414_661, 112539) - // Standard Error: 1_473 - .saturating_add(Weight::from_parts(380_401, 0).saturating_mul(s.into())) + // Minimum execution time: 4_350 nanoseconds. + Weight::from_parts(10_520_689, 112539) + // Standard Error: 1_829 + .saturating_add(Weight::from_parts(386_252, 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::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_930 nanoseconds. - Weight::from_parts(6_560_000, 0) + // Minimum execution time: 6_000 nanoseconds. + Weight::from_parts(6_300_000, 0) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) /// Proof: `Preimage::PreimageFor` (`max_values`: None, `max_size`: Some(4194344), added: 4196819, mode: `Measured`) @@ -93,10 +93,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 24_150 nanoseconds. - Weight::from_parts(6_833_717, 3644) - // Standard Error: 4 - .saturating_add(Weight::from_parts(988, 0).saturating_mul(s.into())) + // Minimum execution time: 23_991 nanoseconds. + Weight::from_parts(24_360_000, 3644) + // Standard Error: 3 + .saturating_add(Weight::from_parts(983, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -107,29 +107,29 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_561 nanoseconds. - Weight::from_parts(8_060_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 7_600 nanoseconds. + Weight::from_parts(7_910_000, 0).saturating_add(T::DbWeight::get().writes(1)) } fn service_task_periodic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_900 nanoseconds. - Weight::from_parts(6_370_000, 0) + // Minimum execution time: 5_980 nanoseconds. + Weight::from_parts(6_260_000, 0) } fn execute_dispatch_signed() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_560 nanoseconds. - Weight::from_parts(2_770_000, 0) + // Minimum execution time: 2_580 nanoseconds. + Weight::from_parts(2_710_000, 0) } fn execute_dispatch_unsigned() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_560 nanoseconds. - Weight::from_parts(2_740_000, 0) + // Minimum execution time: 2_570 nanoseconds. + Weight::from_parts(2_700_000, 0) } /// Storage: `Scheduler::Agenda` (r:1 w:1) /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(109074), added: 111549, mode: `MaxEncodedLen`) @@ -138,10 +138,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `85 + s * (181 ±0)` // Estimated: `112539` - // Minimum execution time: 14_301 nanoseconds. - Weight::from_parts(21_026_930, 112539) - // Standard Error: 1_204 - .saturating_add(Weight::from_parts(407_393, 0).saturating_mul(s.into())) + // Minimum execution time: 14_340 nanoseconds. + Weight::from_parts(21_553_564, 112539) + // Standard Error: 1_013 + .saturating_add(Weight::from_parts(409_980, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -154,10 +154,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `85 + s * (181 ±0)` // Estimated: `112539` - // Minimum execution time: 19_471 nanoseconds. - Weight::from_parts(20_577_237, 112539) - // Standard Error: 1_662 - .saturating_add(Weight::from_parts(629_184, 0).saturating_mul(s.into())) + // Minimum execution time: 19_671 nanoseconds. + Weight::from_parts(21_665_016, 112539) + // Standard Error: 1_616 + .saturating_add(Weight::from_parts(621_159, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -170,10 +170,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `601 + s * (182 ±0)` // Estimated: `112539` - // Minimum execution time: 17_810 nanoseconds. - Weight::from_parts(25_891_676, 112539) - // Standard Error: 1_679 - .saturating_add(Weight::from_parts(428_101, 0).saturating_mul(s.into())) + // Minimum execution time: 17_510 nanoseconds. + Weight::from_parts(27_298_141, 112539) + // Standard Error: 1_160 + .saturating_add(Weight::from_parts(409_377, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -186,10 +186,10 @@ impl pallet_scheduler::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `717 + s * (181 ±0)` // Estimated: `112539` - // Minimum execution time: 22_150 nanoseconds. - Weight::from_parts(25_324_412, 112539) - // Standard Error: 1_764 - .saturating_add(Weight::from_parts(632_945, 0).saturating_mul(s.into())) + // Minimum execution time: 22_200 nanoseconds. + Weight::from_parts(24_682_939, 112539) + // Standard Error: 1_785 + .saturating_add(Weight::from_parts(634_887, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/common/src/weights/pallet_timestamp.rs b/runtime/common/src/weights/pallet_timestamp.rs index e96605b24..c31f49198 100644 --- a/runtime/common/src/weights/pallet_timestamp.rs +++ b/runtime/common/src/weights/pallet_timestamp.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -60,8 +60,8 @@ impl pallet_timestamp::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `256` // Estimated: `1493` - // Minimum execution time: 16_110 nanoseconds. - Weight::from_parts(16_740_000, 1493) + // Minimum execution time: 15_970 nanoseconds. + Weight::from_parts(16_370_000, 1493) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -69,7 +69,7 @@ impl pallet_timestamp::weights::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `128` // Estimated: `0` - // Minimum execution time: 6_310 nanoseconds. - Weight::from_parts(6_690_000, 0) + // Minimum execution time: 6_400 nanoseconds. + Weight::from_parts(6_640_000, 0) } } diff --git a/runtime/common/src/weights/pallet_treasury.rs b/runtime/common/src/weights/pallet_treasury.rs index c0462ebe8..2fe05c2c2 100644 --- a/runtime/common/src/weights/pallet_treasury.rs +++ b/runtime/common/src/weights/pallet_treasury.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_treasury //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -62,8 +62,8 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `42` // Estimated: `1887` - // Minimum execution time: 17_720 nanoseconds. - Weight::from_parts(18_300_000, 1887) + // Minimum execution time: 17_281 nanoseconds. + Weight::from_parts(17_760_000, 1887) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -75,8 +75,8 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `147` // Estimated: `1489` - // Minimum execution time: 32_571 nanoseconds. - Weight::from_parts(34_610_000, 1489) + // Minimum execution time: 33_121 nanoseconds. + Weight::from_parts(34_171_000, 1489) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -88,8 +88,8 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `449` // Estimated: `6204` - // Minimum execution time: 51_741 nanoseconds. - Weight::from_parts(52_911_000, 6204) + // Minimum execution time: 51_431 nanoseconds. + Weight::from_parts(52_261_000, 6204) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -102,10 +102,10 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `469 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 12_660 nanoseconds. - Weight::from_parts(16_902_078, 3573) - // Standard Error: 1_679 - .saturating_add(Weight::from_parts(49_073, 0).saturating_mul(p.into())) + // Minimum execution time: 11_641 nanoseconds. + Weight::from_parts(15_811_637, 3573) + // Standard Error: 1_705 + .saturating_add(Weight::from_parts(57_306, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -115,8 +115,8 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `127` // Estimated: `1887` - // Minimum execution time: 9_881 nanoseconds. - Weight::from_parts(10_310_000, 1887) + // Minimum execution time: 9_270 nanoseconds. + Weight::from_parts(9_610_000, 1887) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -135,10 +135,10 @@ impl pallet_treasury::weights::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `320 + p * (255 ±0)` // Estimated: `3597 + p * (5214 ±0)` - // Minimum execution time: 51_392 nanoseconds. - Weight::from_parts(50_644_316, 3597) - // Standard Error: 59_272 - .saturating_add(Weight::from_parts(48_465_328, 0).saturating_mul(p.into())) + // Minimum execution time: 53_001 nanoseconds. + Weight::from_parts(51_523_581, 3597) + // Standard Error: 53_616 + .saturating_add(Weight::from_parts(49_862_561, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/common/src/weights/pallet_utility.rs b/runtime/common/src/weights/pallet_utility.rs index 887e2d8bc..b06f6db88 100644 --- a/runtime/common/src/weights/pallet_utility.rs +++ b/runtime/common/src/weights/pallet_utility.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_utility //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -57,43 +57,43 @@ impl pallet_utility::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_820 nanoseconds. - Weight::from_parts(13_785_931, 0) - // Standard Error: 4_081 - .saturating_add(Weight::from_parts(5_355_482, 0).saturating_mul(c.into())) + // Minimum execution time: 7_770 nanoseconds. + Weight::from_parts(18_600_567, 0) + // Standard Error: 4_074 + .saturating_add(Weight::from_parts(5_620_537, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_271 nanoseconds. - Weight::from_parts(5_610_000, 0) + // Minimum execution time: 5_360 nanoseconds. + Weight::from_parts(5_720_000, 0) } /// The range of component `c` is `[0, 1000]`. fn batch_all(c: u32) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_950 nanoseconds. - Weight::from_parts(20_429_969, 0) - // Standard Error: 4_862 - .saturating_add(Weight::from_parts(5_589_792, 0).saturating_mul(c.into())) + // Minimum execution time: 8_040 nanoseconds. + Weight::from_parts(8_230_000, 0) + // Standard Error: 6_159 + .saturating_add(Weight::from_parts(5_979_861, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_860 nanoseconds. - Weight::from_parts(11_091_000, 0) + // Minimum execution time: 10_450 nanoseconds. + Weight::from_parts(10_930_000, 0) } /// The range of component `c` is `[0, 1000]`. fn force_batch(c: u32) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_820 nanoseconds. - Weight::from_parts(12_069_425, 0) - // Standard Error: 4_252 - .saturating_add(Weight::from_parts(5_490_774, 0).saturating_mul(c.into())) + // Minimum execution time: 8_070 nanoseconds. + Weight::from_parts(80_616_245, 0) + // Standard Error: 5_428 + .saturating_add(Weight::from_parts(5_426_407, 0).saturating_mul(c.into())) } } diff --git a/runtime/common/src/weights/pallet_vesting.rs b/runtime/common/src/weights/pallet_vesting.rs index 379513b94..ace4693a3 100644 --- a/runtime/common/src/weights/pallet_vesting.rs +++ b/runtime/common/src/weights/pallet_vesting.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_vesting //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -64,12 +64,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `343 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 38_841 nanoseconds. - Weight::from_parts(39_177_842, 4764) - // Standard Error: 3_062 - .saturating_add(Weight::from_parts(45_586, 0).saturating_mul(l.into())) - // Standard Error: 5_449 - .saturating_add(Weight::from_parts(104_115, 0).saturating_mul(s.into())) + // Minimum execution time: 38_141 nanoseconds. + Weight::from_parts(38_453_312, 4764) + // Standard Error: 2_659 + .saturating_add(Weight::from_parts(52_724, 0).saturating_mul(l.into())) + // Standard Error: 4_732 + .saturating_add(Weight::from_parts(118_534, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -85,12 +85,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `343 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 43_011 nanoseconds. - Weight::from_parts(42_994_675, 4764) - // Standard Error: 5_463 - .saturating_add(Weight::from_parts(62_936, 0).saturating_mul(l.into())) - // Standard Error: 9_721 - .saturating_add(Weight::from_parts(105_034, 0).saturating_mul(s.into())) + // Minimum execution time: 42_430 nanoseconds. + Weight::from_parts(43_862_889, 4764) + // Standard Error: 3_028 + .saturating_add(Weight::from_parts(36_836, 0).saturating_mul(l.into())) + // Standard Error: 5_388 + .saturating_add(Weight::from_parts(94_303, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -108,12 +108,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `450 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 42_491 nanoseconds. - Weight::from_parts(43_248_191, 4764) - // Standard Error: 3_258 - .saturating_add(Weight::from_parts(45_647, 0).saturating_mul(l.into())) - // Standard Error: 5_797 - .saturating_add(Weight::from_parts(96_446, 0).saturating_mul(s.into())) + // Minimum execution time: 41_861 nanoseconds. + Weight::from_parts(42_053_462, 4764) + // Standard Error: 2_865 + .saturating_add(Weight::from_parts(48_900, 0).saturating_mul(l.into())) + // Standard Error: 5_098 + .saturating_add(Weight::from_parts(119_628, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -131,12 +131,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `450 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 46_221 nanoseconds. - Weight::from_parts(47_350_351, 4764) - // Standard Error: 3_939 - .saturating_add(Weight::from_parts(45_864, 0).saturating_mul(l.into())) - // Standard Error: 7_008 - .saturating_add(Weight::from_parts(98_661, 0).saturating_mul(s.into())) + // Minimum execution time: 46_101 nanoseconds. + Weight::from_parts(47_211_839, 4764) + // Standard Error: 2_884 + .saturating_add(Weight::from_parts(41_006, 0).saturating_mul(l.into())) + // Standard Error: 5_131 + .saturating_add(Weight::from_parts(93_138, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -154,12 +154,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `521 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 82_762 nanoseconds. - Weight::from_parts(85_391_940, 4764) - // Standard Error: 7_126 - .saturating_add(Weight::from_parts(59_265, 0).saturating_mul(l.into())) - // Standard Error: 12_680 - .saturating_add(Weight::from_parts(189_674, 0).saturating_mul(s.into())) + // Minimum execution time: 83_482 nanoseconds. + Weight::from_parts(88_991_968, 4764) + // Standard Error: 11_372 + .saturating_add(Weight::from_parts(36_171, 0).saturating_mul(l.into())) + // Standard Error: 20_233 + .saturating_add(Weight::from_parts(16_572, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -177,12 +177,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `628 + l * (25 ±0) + s * (40 ±0)` // Estimated: `6204` - // Minimum execution time: 87_132 nanoseconds. - Weight::from_parts(86_414_750, 6204) - // Standard Error: 16_931 - .saturating_add(Weight::from_parts(119_327, 0).saturating_mul(l.into())) - // Standard Error: 30_124 - .saturating_add(Weight::from_parts(266_388, 0).saturating_mul(s.into())) + // Minimum execution time: 86_221 nanoseconds. + Weight::from_parts(88_642_038, 6204) + // Standard Error: 5_153 + .saturating_add(Weight::from_parts(47_642, 0).saturating_mul(l.into())) + // Standard Error: 9_169 + .saturating_add(Weight::from_parts(163_802, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -200,12 +200,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `448 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 42_830 nanoseconds. - Weight::from_parts(43_773_712, 4764) - // Standard Error: 2_903 - .saturating_add(Weight::from_parts(40_756, 0).saturating_mul(l.into())) - // Standard Error: 5_361 - .saturating_add(Weight::from_parts(116_495, 0).saturating_mul(s.into())) + // Minimum execution time: 42_881 nanoseconds. + Weight::from_parts(42_709_626, 4764) + // Standard Error: 4_352 + .saturating_add(Weight::from_parts(50_456, 0).saturating_mul(l.into())) + // Standard Error: 8_037 + .saturating_add(Weight::from_parts(137_091, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -223,12 +223,12 @@ impl pallet_vesting::weights::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `448 + l * (25 ±0) + s * (40 ±0)` // Estimated: `4764` - // Minimum execution time: 47_501 nanoseconds. - Weight::from_parts(48_177_622, 4764) - // Standard Error: 4_244 - .saturating_add(Weight::from_parts(48_727, 0).saturating_mul(l.into())) - // Standard Error: 7_839 - .saturating_add(Weight::from_parts(121_884, 0).saturating_mul(s.into())) + // Minimum execution time: 47_461 nanoseconds. + Weight::from_parts(47_372_254, 4764) + // Standard Error: 3_359 + .saturating_add(Weight::from_parts(58_260, 0).saturating_mul(l.into())) + // Standard Error: 6_204 + .saturating_add(Weight::from_parts(127_037, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/zrml/authorized/src/weights.rs b/zrml/authorized/src/weights.rs index 438104ad1..e0b5fcad5 100644 --- a/zrml/authorized/src/weights.rs +++ b/zrml/authorized/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_authorized //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -74,10 +74,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `757 + m * (22 ±0)` // Estimated: `4507` - // Minimum execution time: 29_411 nanoseconds. - Weight::from_parts(31_577_727, 4507) - // Standard Error: 2_714 - .saturating_add(Weight::from_parts(89_742, 0).saturating_mul(m.into())) + // Minimum execution time: 29_891 nanoseconds. + Weight::from_parts(31_308_176, 4507) + // Standard Error: 3_125 + .saturating_add(Weight::from_parts(93_883, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -89,8 +89,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `561` // Estimated: `4159` - // Minimum execution time: 24_361 nanoseconds. - Weight::from_parts(26_040_000, 4159) + // Minimum execution time: 24_691 nanoseconds. + Weight::from_parts(25_290_000, 4159) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -98,8 +98,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 250 nanoseconds. - Weight::from_parts(310_000, 0) + // Minimum execution time: 280 nanoseconds. + Weight::from_parts(320_000, 0) } /// Storage: `Authorized::AuthorizedOutcomeReports` (r:1 w:1) /// Proof: `Authorized::AuthorizedOutcomeReports` (`max_values`: None, `max_size`: Some(49), added: 2524, mode: `MaxEncodedLen`) @@ -107,8 +107,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `217` // Estimated: `3514` - // Minimum execution time: 7_130 nanoseconds. - Weight::from_parts(7_620_000, 3514) + // Minimum execution time: 7_181 nanoseconds. + Weight::from_parts(7_350_000, 3514) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -116,8 +116,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_110 nanoseconds. - Weight::from_parts(2_370_000, 0) + // Minimum execution time: 1_910 nanoseconds. + Weight::from_parts(2_080_000, 0) } /// Storage: `Authorized::AuthorizedOutcomeReports` (r:1 w:0) /// Proof: `Authorized::AuthorizedOutcomeReports` (`max_values`: None, `max_size`: Some(49), added: 2524, mode: `MaxEncodedLen`) @@ -125,22 +125,22 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `217` // Estimated: `3514` - // Minimum execution time: 6_541 nanoseconds. - Weight::from_parts(6_830_000, 3514).saturating_add(T::DbWeight::get().reads(1)) + // Minimum execution time: 6_580 nanoseconds. + Weight::from_parts(6_870_000, 3514).saturating_add(T::DbWeight::get().reads(1)) } fn has_failed_weight() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 260 nanoseconds. - Weight::from_parts(310_000, 0) + // Minimum execution time: 250 nanoseconds. + Weight::from_parts(320_000, 0) } fn on_global_dispute_weight() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 270 nanoseconds. - Weight::from_parts(340_000, 0) + // Minimum execution time: 260 nanoseconds. + Weight::from_parts(320_000, 0) } /// Storage: `Authorized::AuthorizedOutcomeReports` (r:0 w:1) /// Proof: `Authorized::AuthorizedOutcomeReports` (`max_values`: None, `max_size`: Some(49), added: 2524, mode: `MaxEncodedLen`) @@ -148,7 +148,7 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_800 nanoseconds. - Weight::from_parts(1_930_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 1_780 nanoseconds. + Weight::from_parts(2_120_000, 0).saturating_add(T::DbWeight::get().writes(1)) } } diff --git a/zrml/court/src/weights.rs b/zrml/court/src/weights.rs index 6f37685dc..00d4e7b47 100644 --- a/zrml/court/src/weights.rs +++ b/zrml/court/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_court //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -87,10 +87,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1082 + j * (96 ±0)` // Estimated: `97487` - // Minimum execution time: 45_821 nanoseconds. - Weight::from_parts(55_137_445, 97487) - // Standard Error: 473 - .saturating_add(Weight::from_parts(95_745, 0).saturating_mul(j.into())) + // Minimum execution time: 45_531 nanoseconds. + Weight::from_parts(55_818_024, 97487) + // Standard Error: 429 + .saturating_add(Weight::from_parts(87_585, 0).saturating_mul(j.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -108,12 +108,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + d * (651 ±0) + j * (98 ±0)` // Estimated: `97487 + d * (2726 ±0)` - // Minimum execution time: 69_852 nanoseconds. - Weight::from_parts(51_022_446, 97487) - // Standard Error: 677 - .saturating_add(Weight::from_parts(124_464, 0).saturating_mul(j.into())) - // Standard Error: 147_073 - .saturating_add(Weight::from_parts(7_122_540, 0).saturating_mul(d.into())) + // Minimum execution time: 70_523 nanoseconds. + Weight::from_parts(51_742_170, 97487) + // Standard Error: 637 + .saturating_add(Weight::from_parts(118_140, 0).saturating_mul(j.into())) + // Standard Error: 138_375 + .saturating_add(Weight::from_parts(6_736_864, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -128,10 +128,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1020 + j * (96 ±0)` // Estimated: `97487` - // Minimum execution time: 22_770 nanoseconds. - Weight::from_parts(32_709_315, 97487) - // Standard Error: 464 - .saturating_add(Weight::from_parts(73_427, 0).saturating_mul(j.into())) + // Minimum execution time: 23_170 nanoseconds. + Weight::from_parts(31_695_050, 97487) + // Standard Error: 292 + .saturating_add(Weight::from_parts(73_562, 0).saturating_mul(j.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -145,8 +145,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `276` // Estimated: `4764` - // Minimum execution time: 44_041 nanoseconds. - Weight::from_parts(45_991_000, 4764) + // Minimum execution time: 43_861 nanoseconds. + Weight::from_parts(45_190_000, 4764) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -160,8 +160,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `276` // Estimated: `4764` - // Minimum execution time: 36_571 nanoseconds. - Weight::from_parts(37_361_000, 4764) + // Minimum execution time: 35_870 nanoseconds. + Weight::from_parts(36_931_000, 4764) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -174,10 +174,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `387 + d * (53 ±0)` // Estimated: `153439` - // Minimum execution time: 35_381 nanoseconds. - Weight::from_parts(39_072_555, 153439) - // Standard Error: 1_313 - .saturating_add(Weight::from_parts(100_825, 0).saturating_mul(d.into())) + // Minimum execution time: 34_871 nanoseconds. + Weight::from_parts(37_428_708, 153439) + // Standard Error: 381 + .saturating_add(Weight::from_parts(103_937, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -196,10 +196,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1496 + d * (53 ±0)` // Estimated: `153439` - // Minimum execution time: 48_061 nanoseconds. - Weight::from_parts(55_221_068, 153439) - // Standard Error: 688 - .saturating_add(Weight::from_parts(121_301, 0).saturating_mul(d.into())) + // Minimum execution time: 47_831 nanoseconds. + Weight::from_parts(54_598_122, 153439) + // Standard Error: 621 + .saturating_add(Weight::from_parts(126_668, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -218,10 +218,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `2034 + d * (53 ±0)` // Estimated: `153439` - // Minimum execution time: 61_182 nanoseconds. - Weight::from_parts(65_882_871, 153439) - // Standard Error: 1_340 - .saturating_add(Weight::from_parts(100_721, 0).saturating_mul(d.into())) + // Minimum execution time: 61_301 nanoseconds. + Weight::from_parts(63_924_015, 153439) + // Standard Error: 321 + .saturating_add(Weight::from_parts(103_527, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -255,12 +255,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + a * (24688 ±0) + f * (16 ±0) + j * (149 ±0) + r * (16 ±0)` // Estimated: `268138 + a * (318078 ±1_049) + j * (194 ±3)` - // Minimum execution time: 3_316_953 nanoseconds. - Weight::from_parts(3_424_047_000, 268138) - // Standard Error: 58_932 - .saturating_add(Weight::from_parts(5_353_838, 0).saturating_mul(j.into())) - // Standard Error: 20_518_662 - .saturating_add(Weight::from_parts(3_732_841_529, 0).saturating_mul(a.into())) + // Minimum execution time: 3_332_141 nanoseconds. + Weight::from_parts(3_442_003_000, 268138) + // Standard Error: 62_139 + .saturating_add(Weight::from_parts(5_788_506, 0).saturating_mul(j.into())) + // Standard Error: 21_635_039 + .saturating_add(Weight::from_parts(3_898_041_505, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((127_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(100)) @@ -281,10 +281,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `947 + d * (523 ±0)` // Estimated: `153439 + d * (2726 ±0)` - // Minimum execution time: 157_054 nanoseconds. - Weight::from_parts(159_135_000, 153439) - // Standard Error: 99_115 - .saturating_add(Weight::from_parts(79_883_242, 0).saturating_mul(d.into())) + // Minimum execution time: 151_234 nanoseconds. + Weight::from_parts(152_663_000, 153439) + // Standard Error: 89_829 + .saturating_add(Weight::from_parts(79_360_224, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -297,8 +297,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 10_380 nanoseconds. - Weight::from_parts(11_100_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 10_490 nanoseconds. + Weight::from_parts(10_980_000, 0).saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Court::YearlyInflation` (r:1 w:0) /// Proof: `Court::YearlyInflation` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -311,10 +311,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + j * (235 ±0)` // Estimated: `97487 + j * (2607 ±0)` - // Minimum execution time: 31_821 nanoseconds. - Weight::from_parts(32_331_000, 97487) - // Standard Error: 19_679 - .saturating_add(Weight::from_parts(20_453_281, 0).saturating_mul(j.into())) + // Minimum execution time: 32_871 nanoseconds. + Weight::from_parts(33_220_000, 97487) + // Standard Error: 25_472 + .saturating_add(Weight::from_parts(21_011_552, 0).saturating_mul(j.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(j.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(j.into()))) @@ -333,10 +333,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `113583 + a * (14765 ±0)` // Estimated: `97487 + a * (136685 ±1_677)` - // Minimum execution time: 1_470_586 nanoseconds. - Weight::from_parts(1_170_612_747, 97487) - // Standard Error: 33_468_065 - .saturating_add(Weight::from_parts(2_465_813_151, 0).saturating_mul(a.into())) + // Minimum execution time: 1_493_831 nanoseconds. + Weight::from_parts(1_180_557_253, 97487) + // Standard Error: 33_970_293 + .saturating_add(Weight::from_parts(2_500_165_551, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(31)) .saturating_add(T::DbWeight::get().reads((50_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(26)) @@ -371,12 +371,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `5181 + j * (104 ±0) + r * (16 ±0)` // Estimated: `97487 + j * (8 ±0) + r * (25 ±4)` - // Minimum execution time: 275_207 nanoseconds. - Weight::from_parts(331_416_012, 97487) - // Standard Error: 2_537 - .saturating_add(Weight::from_parts(150_832, 0).saturating_mul(j.into())) - // Standard Error: 39_332 - .saturating_add(Weight::from_parts(23_300, 0).saturating_mul(r.into())) + // Minimum execution time: 285_517 nanoseconds. + Weight::from_parts(323_671_356, 97487) + // Standard Error: 2_211 + .saturating_add(Weight::from_parts(154_272, 0).saturating_mul(j.into())) + // Standard Error: 34_279 + .saturating_add(Weight::from_parts(220_032, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(34)) .saturating_add(T::DbWeight::get().writes(36)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(j.into())) @@ -399,10 +399,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `890 + d * (224 ±0)` // Estimated: `153439 + d * (2726 ±0)` - // Minimum execution time: 40_591 nanoseconds. - Weight::from_parts(41_431_000, 153439) - // Standard Error: 8_178 - .saturating_add(Weight::from_parts(6_087_307, 0).saturating_mul(d.into())) + // Minimum execution time: 42_071 nanoseconds. + Weight::from_parts(42_901_000, 153439) + // Standard Error: 8_352 + .saturating_add(Weight::from_parts(6_168_005, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -422,10 +422,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `388 + a * (320 ±0)` // Estimated: `3814 + a * (3724 ±0)` - // Minimum execution time: 13_451 nanoseconds. - Weight::from_parts(15_709_575, 3814) - // Standard Error: 61_236 - .saturating_add(Weight::from_parts(28_060_972, 0).saturating_mul(a.into())) + // Minimum execution time: 13_140 nanoseconds. + Weight::from_parts(15_216_631, 3814) + // Standard Error: 53_048 + .saturating_add(Weight::from_parts(27_465_058, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(a.into()))) @@ -439,8 +439,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `391` // Estimated: `3814` - // Minimum execution time: 11_540 nanoseconds. - Weight::from_parts(12_010_000, 3814).saturating_add(T::DbWeight::get().reads(2)) + // Minimum execution time: 11_440 nanoseconds. + Weight::from_parts(11_800_000, 3814).saturating_add(T::DbWeight::get().reads(2)) } /// Storage: `Court::MarketIdToCourtId` (r:1 w:0) /// Proof: `Court::MarketIdToCourtId` (`max_values`: None, `max_size`: Some(40), added: 2515, mode: `MaxEncodedLen`) @@ -456,8 +456,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `3854` // Estimated: `97487` - // Minimum execution time: 31_411 nanoseconds. - Weight::from_parts(32_941_000, 97487).saturating_add(T::DbWeight::get().reads(5)) + // Minimum execution time: 31_291 nanoseconds. + Weight::from_parts(33_051_000, 97487).saturating_add(T::DbWeight::get().reads(5)) } /// Storage: `Court::MarketIdToCourtId` (r:1 w:0) /// Proof: `Court::MarketIdToCourtId` (`max_values`: None, `max_size`: Some(40), added: 2515, mode: `MaxEncodedLen`) @@ -473,10 +473,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `422 + a * (66 ±0) + d * (224 ±0)` // Estimated: `153439 + d * (2726 ±0)` - // Minimum execution time: 26_660 nanoseconds. - Weight::from_parts(19_383_061, 153439) - // Standard Error: 9_201 - .saturating_add(Weight::from_parts(6_253_440, 0).saturating_mul(d.into())) + // Minimum execution time: 28_151 nanoseconds. + Weight::from_parts(28_631_000, 153439) + // Standard Error: 5_176 + .saturating_add(Weight::from_parts(6_350_915, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -496,10 +496,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `367 + d * (224 ±0)` // Estimated: `153439 + d * (2726 ±0)` - // Minimum execution time: 22_200 nanoseconds. - Weight::from_parts(22_800_000, 153439) - // Standard Error: 8_880 - .saturating_add(Weight::from_parts(5_965_506, 0).saturating_mul(d.into())) + // Minimum execution time: 22_210 nanoseconds. + Weight::from_parts(22_941_000, 153439) + // Standard Error: 8_027 + .saturating_add(Weight::from_parts(6_074_804, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/zrml/global-disputes/src/weights.rs b/zrml/global-disputes/src/weights.rs index a06ae28be..31309a506 100644 --- a/zrml/global-disputes/src/weights.rs +++ b/zrml/global-disputes/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_global_disputes //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -74,16 +74,14 @@ impl WeightInfoZeitgeist for WeightInfo { /// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(65), added: 2540, mode: `MaxEncodedLen`) /// The range of component `o` is `[2, 10]`. /// The range of component `v` is `[0, 49]`. - fn vote_on_outcome(o: u32, v: u32) -> Weight { + fn vote_on_outcome(_o: u32, v: u32) -> Weight { // Proof Size summary in bytes: // Measured: `452 + o * (33 ±0) + v * (32 ±0)` // Estimated: `5106` - // Minimum execution time: 60_231 nanoseconds. - Weight::from_parts(61_335_314, 5106) - // Standard Error: 49_406 - .saturating_add(Weight::from_parts(237_147, 0).saturating_mul(o.into())) - // Standard Error: 8_689 - .saturating_add(Weight::from_parts(133_539, 0).saturating_mul(v.into())) + // Minimum execution time: 61_281 nanoseconds. + Weight::from_parts(65_221_662, 5106) + // Standard Error: 4_175 + .saturating_add(Weight::from_parts(66_837, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -103,12 +101,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + l * (435 ±0) + o * (1600 ±0)` // Estimated: `5106 + l * (2871 ±0)` - // Minimum execution time: 34_582 nanoseconds. - Weight::from_parts(31_090_076, 5106) - // Standard Error: 11_417 - .saturating_add(Weight::from_parts(3_446_882, 0).saturating_mul(l.into())) - // Standard Error: 59_923 - .saturating_add(Weight::from_parts(796_778, 0).saturating_mul(o.into())) + // Minimum execution time: 34_631 nanoseconds. + Weight::from_parts(31_327_635, 5106) + // Standard Error: 9_052 + .saturating_add(Weight::from_parts(3_571_866, 0).saturating_mul(l.into())) + // Standard Error: 47_513 + .saturating_add(Weight::from_parts(818_545, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(l.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -130,12 +128,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + l * (419 ±0) + o * (1600 ±0)` // Estimated: `5106 + l * (2871 ±0)` - // Minimum execution time: 34_021 nanoseconds. - Weight::from_parts(29_799_788, 5106) - // Standard Error: 10_444 - .saturating_add(Weight::from_parts(3_359_236, 0).saturating_mul(l.into())) - // Standard Error: 54_817 - .saturating_add(Weight::from_parts(748_788, 0).saturating_mul(o.into())) + // Minimum execution time: 35_101 nanoseconds. + Weight::from_parts(30_900_200, 5106) + // Standard Error: 9_052 + .saturating_add(Weight::from_parts(3_495_887, 0).saturating_mul(l.into())) + // Standard Error: 47_512 + .saturating_add(Weight::from_parts(661_905, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(l.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -154,10 +152,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `680 + w * (32 ±0)` // Estimated: `4159` - // Minimum execution time: 79_431 nanoseconds. - Weight::from_parts(81_944_834, 4159) - // Standard Error: 18_000 - .saturating_add(Weight::from_parts(185_513, 0).saturating_mul(w.into())) + // Minimum execution time: 78_902 nanoseconds. + Weight::from_parts(82_020_410, 4159) + // Standard Error: 18_347 + .saturating_add(Weight::from_parts(141_445, 0).saturating_mul(w.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -172,10 +170,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `464 + o * (41 ±0)` // Estimated: `3861 + o * (2790 ±20)` - // Minimum execution time: 82_122 nanoseconds. - Weight::from_parts(42_385_619, 3861) - // Standard Error: 242_642 - .saturating_add(Weight::from_parts(47_858_003, 0).saturating_mul(o.into())) + // Minimum execution time: 82_822 nanoseconds. + Weight::from_parts(45_008_105, 3861) + // Standard Error: 216_175 + .saturating_add(Weight::from_parts(47_290_206, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(o.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -192,8 +190,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `511` // Estimated: `6204` - // Minimum execution time: 81_902 nanoseconds. - Weight::from_parts(85_522_000, 6204) + // Minimum execution time: 81_543 nanoseconds. + Weight::from_parts(83_572_000, 6204) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -207,10 +205,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `385 + k * (90 ±0) + o * (32 ±0)` // Estimated: `6730 + k * (2870 ±0)` - // Minimum execution time: 48_311 nanoseconds. - Weight::from_parts(49_441_630, 6730) - // Standard Error: 12_454 - .saturating_add(Weight::from_parts(7_092_286, 0).saturating_mul(k.into())) + // Minimum execution time: 48_611 nanoseconds. + Weight::from_parts(50_185_138, 6730) + // Standard Error: 11_693 + .saturating_add(Weight::from_parts(6_965_478, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -227,10 +225,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `385 + k * (90 ±0) + o * (32 ±0)` // Estimated: `6730 + k * (2870 ±0)` - // Minimum execution time: 45_261 nanoseconds. - Weight::from_parts(58_675_971, 6730) - // Standard Error: 13_684 - .saturating_add(Weight::from_parts(7_023_319, 0).saturating_mul(k.into())) + // Minimum execution time: 45_662 nanoseconds. + Weight::from_parts(58_765_984, 6730) + // Standard Error: 12_445 + .saturating_add(Weight::from_parts(6_889_728, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/zrml/hybrid-router/src/weights.rs b/zrml/hybrid-router/src/weights.rs index f31e70c70..efccacdf0 100644 --- a/zrml/hybrid-router/src/weights.rs +++ b/zrml/hybrid-router/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_hybrid_router //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-27`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -79,13 +79,13 @@ impl WeightInfoZeitgeist for WeightInfo { fn buy(n: u32, o: u32) -> Weight { // Proof Size summary in bytes: // Measured: `1249 + n * (166 ±0) + o * (497 ±0)` - // Estimated: `148211 + n * (2598 ±1) + o * (3751 ±0)` - // Minimum execution time: 717_576 nanoseconds. - Weight::from_parts(732_168_000, 148211) - // Standard Error: 1_243_516 - .saturating_add(Weight::from_parts(35_324_769, 0).saturating_mul(n.into())) - // Standard Error: 2_039_438 - .saturating_add(Weight::from_parts(522_633_049, 0).saturating_mul(o.into())) + // Estimated: `148211 + n * (2598 ±1) + o * (3751 ±2)` + // Minimum execution time: 711_065 nanoseconds. + Weight::from_parts(718_686_000, 148211) + // Standard Error: 1_254_859 + .saturating_add(Weight::from_parts(35_551_646, 0).saturating_mul(n.into())) + // Standard Error: 2_058_041 + .saturating_add(Weight::from_parts(527_276_262, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(o.into()))) @@ -119,12 +119,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1325 + n * (164 ±0) + o * (339 ±0)` // Estimated: `148211 + n * (2598 ±0) + o * (3724 ±0)` - // Minimum execution time: 603_744 nanoseconds. - Weight::from_parts(621_015_000, 148211) - // Standard Error: 1_922_001 - .saturating_add(Weight::from_parts(53_638_911, 0).saturating_mul(n.into())) - // Standard Error: 1_975_539 - .saturating_add(Weight::from_parts(431_438_655, 0).saturating_mul(o.into())) + // Minimum execution time: 601_763 nanoseconds. + Weight::from_parts(609_814_000, 148211) + // Standard Error: 1_970_434 + .saturating_add(Weight::from_parts(54_918_658, 0).saturating_mul(n.into())) + // Standard Error: 2_025_321 + .saturating_add(Weight::from_parts(432_998_477, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(o.into()))) diff --git a/zrml/neo-swaps/src/weights.rs b/zrml/neo-swaps/src/weights.rs index ac2439de2..74e948d50 100644 --- a/zrml/neo-swaps/src/weights.rs +++ b/zrml/neo-swaps/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_neo_swaps //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -77,10 +77,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1283 + n * (163 ±0)` // Estimated: `148211 + n * (2598 ±0)` - // Minimum execution time: 358_858 nanoseconds. - Weight::from_parts(345_988_456, 148211) - // Standard Error: 26_405 - .saturating_add(Weight::from_parts(16_089_784, 0).saturating_mul(n.into())) + // Minimum execution time: 367_628 nanoseconds. + Weight::from_parts(352_364_640, 148211) + // Standard Error: 44_817 + .saturating_add(Weight::from_parts(16_342_365, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(5)) @@ -102,10 +102,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1414 + n * (163 ±0)` // Estimated: `148211 + n * (2598 ±0)` - // Minimum execution time: 288_937 nanoseconds. - Weight::from_parts(249_923_467, 148211) - // Standard Error: 31_651 - .saturating_add(Weight::from_parts(23_082_237, 0).saturating_mul(n.into())) + // Minimum execution time: 290_977 nanoseconds. + Weight::from_parts(251_827_451, 148211) + // Standard Error: 26_730 + .saturating_add(Weight::from_parts(23_379_744, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(5)) @@ -125,10 +125,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `139311 + n * (197 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 279_517 nanoseconds. - Weight::from_parts(200_152_051, 148211) - // Standard Error: 111_276 - .saturating_add(Weight::from_parts(28_491_631, 0).saturating_mul(n.into())) + // Minimum execution time: 280_475 nanoseconds. + Weight::from_parts(216_619_883, 148211) + // Standard Error: 169_197 + .saturating_add(Weight::from_parts(30_980_963, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -148,10 +148,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `139107 + n * (197 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 305_807 nanoseconds. - Weight::from_parts(211_274_001, 148211) - // Standard Error: 131_734 - .saturating_add(Weight::from_parts(29_189_694, 0).saturating_mul(n.into())) + // Minimum execution time: 306_517 nanoseconds. + Weight::from_parts(192_506_242, 148211) + // Standard Error: 186_645 + .saturating_add(Weight::from_parts(32_347_165, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -171,10 +171,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `138611 + n * (197 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 333_387 nanoseconds. - Weight::from_parts(293_455_097, 148211) - // Standard Error: 111_399 - .saturating_add(Weight::from_parts(28_380_846, 0).saturating_mul(n.into())) + // Minimum execution time: 333_727 nanoseconds. + Weight::from_parts(276_851_445, 148211) + // Standard Error: 174_609 + .saturating_add(Weight::from_parts(31_456_446, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -194,10 +194,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `139208 + n * (197 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 325_558 nanoseconds. - Weight::from_parts(315_555_716, 148211) - // Standard Error: 84_268 - .saturating_add(Weight::from_parts(27_455_063, 0).saturating_mul(n.into())) + // Minimum execution time: 325_537 nanoseconds. + Weight::from_parts(344_456_185, 148211) + // Standard Error: 201_865 + .saturating_add(Weight::from_parts(30_432_204, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -212,8 +212,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `137756` // Estimated: `148211` - // Minimum execution time: 315_896 nanoseconds. - Weight::from_parts(334_177_000, 148211) + // Minimum execution time: 310_396 nanoseconds. + Weight::from_parts(328_797_000, 148211) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -230,10 +230,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `611 + n * (81 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 154_023 nanoseconds. - Weight::from_parts(109_033_497, 148211) - // Standard Error: 41_435 - .saturating_add(Weight::from_parts(33_036_684, 0).saturating_mul(n.into())) + // Minimum execution time: 161_493 nanoseconds. + Weight::from_parts(109_983_447, 148211) + // Standard Error: 44_260 + .saturating_add(Weight::from_parts(34_197_887, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/zrml/orderbook/src/weights.rs b/zrml/orderbook/src/weights.rs index 3f057a93b..d3abbb019 100644 --- a/zrml/orderbook/src/weights.rs +++ b/zrml/orderbook/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_orderbook //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -65,8 +65,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `251` // Estimated: `4714` - // Minimum execution time: 36_210 nanoseconds. - Weight::from_parts(37_161_000, 4714) + // Minimum execution time: 36_331 nanoseconds. + Weight::from_parts(37_771_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -84,8 +84,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `970` // Estimated: `6186` - // Minimum execution time: 90_262 nanoseconds. - Weight::from_parts(91_652_000, 6186) + // Minimum execution time: 90_782 nanoseconds. + Weight::from_parts(92_142_000, 6186) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -101,8 +101,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `318` // Estimated: `4714` - // Minimum execution time: 42_142 nanoseconds. - Weight::from_parts(43_201_000, 4714) + // Minimum execution time: 40_941 nanoseconds. + Weight::from_parts(42_722_000, 4714) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/zrml/parimutuel/src/weights.rs b/zrml/parimutuel/src/weights.rs index da557bc40..5cfa73207 100644 --- a/zrml/parimutuel/src/weights.rs +++ b/zrml/parimutuel/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_parimutuel //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -69,8 +69,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `4159` - // Minimum execution time: 104_053 nanoseconds. - Weight::from_parts(107_383_000, 4159) + // Minimum execution time: 104_452 nanoseconds. + Weight::from_parts(107_972_000, 4159) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -86,8 +86,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `790` // Estimated: `4159` - // Minimum execution time: 101_632 nanoseconds. - Weight::from_parts(103_202_000, 4159) + // Minimum execution time: 101_922 nanoseconds. + Weight::from_parts(103_362_000, 4159) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -103,8 +103,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `790` // Estimated: `6026` - // Minimum execution time: 92_092 nanoseconds. - Weight::from_parts(94_563_000, 6026) + // Minimum execution time: 92_252 nanoseconds. + Weight::from_parts(94_882_000, 6026) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/zrml/prediction-markets/src/weights.rs b/zrml/prediction-markets/src/weights.rs index 68e98ebe4..ae00623d3 100644 --- a/zrml/prediction-markets/src/weights.rs +++ b/zrml/prediction-markets/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_prediction_markets //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -100,10 +100,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `662 + c * (16 ±0)` // Estimated: `4515` - // Minimum execution time: 36_361 nanoseconds. - Weight::from_parts(37_958_571, 4515) - // Standard Error: 1_669 - .saturating_add(Weight::from_parts(19_830, 0).saturating_mul(c.into())) + // Minimum execution time: 36_831 nanoseconds. + Weight::from_parts(38_421_633, 4515) + // Standard Error: 2_042 + .saturating_add(Weight::from_parts(20_167, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -118,10 +118,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `708 + r * (16 ±0)` // Estimated: `4714` - // Minimum execution time: 78_202 nanoseconds. - Weight::from_parts(80_341_013, 4714) - // Standard Error: 2_791 - .saturating_add(Weight::from_parts(22_392, 0).saturating_mul(r.into())) + // Minimum execution time: 79_302 nanoseconds. + Weight::from_parts(81_984_963, 4714) + // Standard Error: 5_599 + .saturating_add(Weight::from_parts(41_550, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -136,10 +136,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `664 + r * (16 ±0)` // Estimated: `4714` - // Minimum execution time: 77_503 nanoseconds. - Weight::from_parts(80_306_496, 4714) - // Standard Error: 3_003 - .saturating_add(Weight::from_parts(10_001, 0).saturating_mul(r.into())) + // Minimum execution time: 77_842 nanoseconds. + Weight::from_parts(82_291_971, 4714) + // Standard Error: 4_485 + .saturating_add(Weight::from_parts(10_323, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -160,10 +160,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1240 + r * (16 ±0)` // Estimated: `8438` - // Minimum execution time: 135_282 nanoseconds. - Weight::from_parts(139_034_310, 8438) - // Standard Error: 9_755 - .saturating_add(Weight::from_parts(65_917, 0).saturating_mul(r.into())) + // Minimum execution time: 137_113 nanoseconds. + Weight::from_parts(141_679_247, 8438) + // Standard Error: 6_463 + .saturating_add(Weight::from_parts(31_634, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -184,10 +184,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1181 + r * (16 ±0)` // Estimated: `8438` - // Minimum execution time: 134_793 nanoseconds. - Weight::from_parts(138_910_691, 8438) - // Standard Error: 5_744 - .saturating_add(Weight::from_parts(28_299, 0).saturating_mul(r.into())) + // Minimum execution time: 136_583 nanoseconds. + Weight::from_parts(141_473_597, 8438) + // Standard Error: 8_261 + .saturating_add(Weight::from_parts(38_708, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -201,8 +201,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `564` // Estimated: `4714` - // Minimum execution time: 45_151 nanoseconds. - Weight::from_parts(45_972_000, 4714) + // Minimum execution time: 45_821 nanoseconds. + Weight::from_parts(48_390_000, 4714) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -215,10 +215,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `503` // Estimated: `4515` - // Minimum execution time: 20_920 nanoseconds. - Weight::from_parts(22_248_071, 4515) - // Standard Error: 65 - .saturating_add(Weight::from_parts(1_023, 0).saturating_mul(r.into())) + // Minimum execution time: 21_080 nanoseconds. + Weight::from_parts(22_303_172, 4515) + // Standard Error: 91 + .saturating_add(Weight::from_parts(1_159, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -235,10 +235,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `538` // Estimated: `4159 + a * (2598 ±0)` - // Minimum execution time: 107_332 nanoseconds. - Weight::from_parts(71_127_851, 4159) - // Standard Error: 25_836 - .saturating_add(Weight::from_parts(17_783_496, 0).saturating_mul(a.into())) + // Minimum execution time: 108_012 nanoseconds. + Weight::from_parts(71_664_486, 4159) + // Standard Error: 29_779 + .saturating_add(Weight::from_parts(18_371_668, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -260,10 +260,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `208 + m * (16 ±0)` // Estimated: `4714` - // Minimum execution time: 51_851 nanoseconds. - Weight::from_parts(56_218_145, 4714) - // Standard Error: 3_723 - .saturating_add(Weight::from_parts(26_314, 0).saturating_mul(m.into())) + // Minimum execution time: 51_602 nanoseconds. + Weight::from_parts(57_117_346, 4714) + // Standard Error: 5_992 + .saturating_add(Weight::from_parts(17_678, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -280,10 +280,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `687 + m * (16 ±0)` // Estimated: `4515` - // Minimum execution time: 46_131 nanoseconds. - Weight::from_parts(48_314_769, 4515) - // Standard Error: 2_711 - .saturating_add(Weight::from_parts(48_401, 0).saturating_mul(m.into())) + // Minimum execution time: 47_221 nanoseconds. + Weight::from_parts(49_232_779, 4515) + // Standard Error: 2_843 + .saturating_add(Weight::from_parts(47_641, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -313,12 +313,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `8805 + m * (16 ±0)` // Estimated: `153439` - // Minimum execution time: 286_587 nanoseconds. - Weight::from_parts(294_812_002, 153439) - // Standard Error: 11_160 - .saturating_add(Weight::from_parts(52_123, 0).saturating_mul(m.into())) - // Standard Error: 11_160 - .saturating_add(Weight::from_parts(8_761, 0).saturating_mul(n.into())) + // Minimum execution time: 289_446 nanoseconds. + Weight::from_parts(297_513_059, 153439) + // Standard Error: 14_165 + .saturating_add(Weight::from_parts(65_823, 0).saturating_mul(m.into())) + // Standard Error: 14_165 + .saturating_add(Weight::from_parts(43_214, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(40)) .saturating_add(T::DbWeight::get().writes(36)) } @@ -330,8 +330,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `4714` - // Minimum execution time: 39_961 nanoseconds. - Weight::from_parts(40_661_000, 4714) + // Minimum execution time: 39_190 nanoseconds. + Weight::from_parts(40_650_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -345,8 +345,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `523` // Estimated: `4714` - // Minimum execution time: 58_621 nanoseconds. - Weight::from_parts(59_872_000, 4714) + // Minimum execution time: 60_451 nanoseconds. + Weight::from_parts(62_032_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -358,8 +358,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `566` // Estimated: `4714` - // Minimum execution time: 58_871 nanoseconds. - Weight::from_parts(62_322_000, 4714) + // Minimum execution time: 59_531 nanoseconds. + Weight::from_parts(61_472_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -375,8 +375,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `859` // Estimated: `4714` - // Minimum execution time: 105_683 nanoseconds. - Weight::from_parts(107_582_000, 4714) + // Minimum execution time: 105_522 nanoseconds. + Weight::from_parts(108_163_000, 4714) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -388,8 +388,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `4714` - // Minimum execution time: 59_021 nanoseconds. - Weight::from_parts(60_921_000, 4714) + // Minimum execution time: 59_501 nanoseconds. + Weight::from_parts(61_501_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -405,8 +405,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `918` // Estimated: `4714` - // Minimum execution time: 104_983 nanoseconds. - Weight::from_parts(107_672_000, 4714) + // Minimum execution time: 107_393 nanoseconds. + Weight::from_parts(109_502_000, 4714) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -426,8 +426,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `79` // Estimated: `4515` - // Minimum execution time: 19_791 nanoseconds. - Weight::from_parts(20_521_000, 4515) + // Minimum execution time: 19_711 nanoseconds. + Weight::from_parts(20_150_000, 4515) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -443,8 +443,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1982` // Estimated: `4159` - // Minimum execution time: 109_183 nanoseconds. - Weight::from_parts(112_903_000, 4159) + // Minimum execution time: 109_602 nanoseconds. + Weight::from_parts(112_433_000, 4159) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -460,8 +460,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `1097` // Estimated: `6186` - // Minimum execution time: 130_592 nanoseconds. - Weight::from_parts(132_213_000, 6186) + // Minimum execution time: 132_524 nanoseconds. + Weight::from_parts(137_973_000, 6186) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -475,14 +475,16 @@ impl WeightInfoZeitgeist for WeightInfo { /// Proof: `PredictionMarkets::MarketIdsForEdit` (`max_values`: None, `max_size`: Some(1050), added: 3525, mode: `MaxEncodedLen`) /// The range of component `c` is `[0, 63]`. /// The range of component `r` is `[0, 1024]`. - fn reject_market(c: u32, _r: u32) -> Weight { + fn reject_market(c: u32, r: u32) -> Weight { // Proof Size summary in bytes: // Measured: `595 + c * (16 ±0)` // Estimated: `4714` - // Minimum execution time: 81_932 nanoseconds. - Weight::from_parts(85_864_050, 4714) - // Standard Error: 3_884 - .saturating_add(Weight::from_parts(20_671, 0).saturating_mul(c.into())) + // Minimum execution time: 83_302 nanoseconds. + Weight::from_parts(86_490_998, 4714) + // Standard Error: 4_477 + .saturating_add(Weight::from_parts(32_226, 0).saturating_mul(c.into())) + // Standard Error: 277 + .saturating_add(Weight::from_parts(61, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -493,12 +495,14 @@ impl WeightInfoZeitgeist for WeightInfo { /// Storage: `PredictionMarkets::MarketIdsPerReportBlock` (r:1 w:1) /// Proof: `PredictionMarkets::MarketIdsPerReportBlock` (`max_values`: None, `max_size`: Some(1042), added: 3517, mode: `MaxEncodedLen`) /// The range of component `m` is `[0, 63]`. - fn report_market_with_dispute_mechanism(_m: u32) -> Weight { + fn report_market_with_dispute_mechanism(m: u32) -> Weight { // Proof Size summary in bytes: // Measured: `700` // Estimated: `4507` - // Minimum execution time: 32_631 nanoseconds. - Weight::from_parts(35_542_967, 4507) + // Minimum execution time: 32_890 nanoseconds. + Weight::from_parts(35_838_009, 4507) + // Standard Error: 2_258 + .saturating_add(Weight::from_parts(8_413, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -510,8 +514,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `522` // Estimated: `4714` - // Minimum execution time: 78_502 nanoseconds. - Weight::from_parts(83_201_000, 4714) + // Minimum execution time: 79_152 nanoseconds. + Weight::from_parts(81_713_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -528,10 +532,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `745 + a * (129 ±0)` // Estimated: `4159 + a * (2598 ±0)` - // Minimum execution time: 124_064 nanoseconds. - Weight::from_parts(76_680_582, 4159) - // Standard Error: 36_580 - .saturating_add(Weight::from_parts(24_350_900, 0).saturating_mul(a.into())) + // Minimum execution time: 126_733 nanoseconds. + Weight::from_parts(72_032_003, 4159) + // Standard Error: 35_921 + .saturating_add(Weight::from_parts(25_272_652, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -550,12 +554,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `2475 + b * (312 ±0) + f * (314 ±0)` // Estimated: `4515 + b * (3169 ±0) + f * (3169 ±0)` - // Minimum execution time: 158_713 nanoseconds. - Weight::from_parts(36_908_793, 4515) - // Standard Error: 17_330 - .saturating_add(Weight::from_parts(4_076_597, 0).saturating_mul(b.into())) - // Standard Error: 17_330 - .saturating_add(Weight::from_parts(4_156_921, 0).saturating_mul(f.into())) + // Minimum execution time: 160_883 nanoseconds. + Weight::from_parts(37_645_751, 4515) + // Standard Error: 19_417 + .saturating_add(Weight::from_parts(4_093_621, 0).saturating_mul(b.into())) + // Standard Error: 19_417 + .saturating_add(Weight::from_parts(4_234_326, 0).saturating_mul(f.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(f.into()))) @@ -575,12 +579,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `2419 + d * (314 ±0) + r * (312 ±0)` // Estimated: `4507 + d * (3169 ±0) + r * (3169 ±0)` - // Minimum execution time: 157_874 nanoseconds. - Weight::from_parts(35_812_743, 4507) - // Standard Error: 16_050 - .saturating_add(Weight::from_parts(4_054_146, 0).saturating_mul(r.into())) - // Standard Error: 16_050 - .saturating_add(Weight::from_parts(4_201_275, 0).saturating_mul(d.into())) + // Minimum execution time: 159_323 nanoseconds. + Weight::from_parts(33_983_702, 4507) + // Standard Error: 19_828 + .saturating_add(Weight::from_parts(4_131_663, 0).saturating_mul(r.into())) + // Standard Error: 19_828 + .saturating_add(Weight::from_parts(4_255_579, 0).saturating_mul(d.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().reads((1_u64).saturating_mul(d.into()))) @@ -596,16 +600,14 @@ impl WeightInfoZeitgeist for WeightInfo { /// Proof: `PredictionMarkets::MarketIdsPerCloseTimeFrame` (`max_values`: None, `max_size`: Some(1050), added: 3525, mode: `MaxEncodedLen`) /// The range of component `o` is `[0, 63]`. /// The range of component `n` is `[0, 63]`. - fn schedule_early_close_as_authority(o: u32, n: u32) -> Weight { + fn schedule_early_close_as_authority(o: u32, _n: u32) -> Weight { // Proof Size summary in bytes: // Measured: `699 + o * (16 ±0)` // Estimated: `8040` - // Minimum execution time: 40_841 nanoseconds. - Weight::from_parts(42_636_937, 8040) - // Standard Error: 2_348 - .saturating_add(Weight::from_parts(26_577, 0).saturating_mul(o.into())) - // Standard Error: 2_348 - .saturating_add(Weight::from_parts(3_552, 0).saturating_mul(n.into())) + // Minimum execution time: 41_331 nanoseconds. + Weight::from_parts(43_076_242, 8040) + // Standard Error: 2_527 + .saturating_add(Weight::from_parts(36_461, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -623,12 +625,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `922 + o * (16 ±0)` // Estimated: `8040` - // Minimum execution time: 88_182 nanoseconds. - Weight::from_parts(91_376_886, 8040) - // Standard Error: 3_638 - .saturating_add(Weight::from_parts(18_750, 0).saturating_mul(o.into())) - // Standard Error: 3_638 - .saturating_add(Weight::from_parts(1_096, 0).saturating_mul(n.into())) + // Minimum execution time: 88_921 nanoseconds. + Weight::from_parts(91_328_810, 8040) + // Standard Error: 3_108 + .saturating_add(Weight::from_parts(24_632, 0).saturating_mul(o.into())) + // Standard Error: 3_108 + .saturating_add(Weight::from_parts(2_344, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -646,12 +648,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `760 + o * (16 ±0)` // Estimated: `8040` - // Minimum execution time: 63_501 nanoseconds. - Weight::from_parts(65_306_625, 8040) - // Standard Error: 2_998 - .saturating_add(Weight::from_parts(42_577, 0).saturating_mul(o.into())) - // Standard Error: 2_998 - .saturating_add(Weight::from_parts(7_115, 0).saturating_mul(n.into())) + // Minimum execution time: 64_121 nanoseconds. + Weight::from_parts(64_952_653, 8040) + // Standard Error: 2_769 + .saturating_add(Weight::from_parts(50_603, 0).saturating_mul(o.into())) + // Standard Error: 2_769 + .saturating_add(Weight::from_parts(19_632, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -669,12 +671,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `844 + n * (16 ±0) + o * (16 ±0)` // Estimated: `8040` - // Minimum execution time: 60_751 nanoseconds. - Weight::from_parts(62_326_517, 8040) - // Standard Error: 2_332 - .saturating_add(Weight::from_parts(21_981, 0).saturating_mul(o.into())) - // Standard Error: 2_332 - .saturating_add(Weight::from_parts(24_836, 0).saturating_mul(n.into())) + // Minimum execution time: 60_892 nanoseconds. + Weight::from_parts(62_339_997, 8040) + // Standard Error: 2_789 + .saturating_add(Weight::from_parts(34_659, 0).saturating_mul(o.into())) + // Standard Error: 2_789 + .saturating_add(Weight::from_parts(21_330, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -690,12 +692,12 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `734 + n * (16 ±0) + o * (16 ±0)` // Estimated: `8040` - // Minimum execution time: 45_781 nanoseconds. - Weight::from_parts(46_238_287, 8040) - // Standard Error: 1_863 - .saturating_add(Weight::from_parts(23_275, 0).saturating_mul(o.into())) - // Standard Error: 1_863 - .saturating_add(Weight::from_parts(23_398, 0).saturating_mul(n.into())) + // Minimum execution time: 45_731 nanoseconds. + Weight::from_parts(47_186_887, 8040) + // Standard Error: 1_785 + .saturating_add(Weight::from_parts(17_033, 0).saturating_mul(o.into())) + // Standard Error: 1_785 + .saturating_add(Weight::from_parts(17_692, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -707,8 +709,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `656` // Estimated: `4714` - // Minimum execution time: 65_791 nanoseconds. - Weight::from_parts(67_812_000, 4714) + // Minimum execution time: 66_901 nanoseconds. + Weight::from_parts(68_771_000, 4714) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -723,10 +725,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `661 + c * (16 ±0)` // Estimated: `4515` - // Minimum execution time: 36_401 nanoseconds. - Weight::from_parts(38_211_380, 4515) - // Standard Error: 1_761 - .saturating_add(Weight::from_parts(23_265, 0).saturating_mul(c.into())) + // Minimum execution time: 36_730 nanoseconds. + Weight::from_parts(38_396_464, 4515) + // Standard Error: 1_844 + .saturating_add(Weight::from_parts(25_746, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -750,16 +752,14 @@ impl WeightInfoZeitgeist for WeightInfo { /// Proof: `MarketCommons::Markets` (`max_values`: None, `max_size`: Some(694), added: 3169, mode: `MaxEncodedLen`) /// The range of component `m` is `[0, 63]`. /// The range of component `n` is `[2, 64]`. - fn create_market_and_deploy_pool(m: u32, n: u32) -> Weight { + fn create_market_and_deploy_pool(_m: u32, n: u32) -> Weight { // Proof Size summary in bytes: // Measured: `378 + m * (16 ±0)` // Estimated: `148211 + n * (5196 ±0)` - // Minimum execution time: 276_327 nanoseconds. - Weight::from_parts(185_599_652, 148211) - // Standard Error: 51_818 - .saturating_add(Weight::from_parts(111_151, 0).saturating_mul(m.into())) - // Standard Error: 52_595 - .saturating_add(Weight::from_parts(46_238_819, 0).saturating_mul(n.into())) + // Minimum execution time: 276_356 nanoseconds. + Weight::from_parts(239_872_618, 148211) + // Standard Error: 165_406 + .saturating_add(Weight::from_parts(47_247_235, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(7)) @@ -777,10 +777,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `646 + o * (16 ±0)` // Estimated: `4515` - // Minimum execution time: 35_311 nanoseconds. - Weight::from_parts(37_275_216, 4515) - // Standard Error: 1_664 - .saturating_add(Weight::from_parts(15_418, 0).saturating_mul(o.into())) + // Minimum execution time: 35_641 nanoseconds. + Weight::from_parts(37_500_911, 4515) + // Standard Error: 2_029 + .saturating_add(Weight::from_parts(19_473, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/zrml/styx/src/weights.rs b/zrml/styx/src/weights.rs index 8c02f05d0..5d2da0bba 100644 --- a/zrml/styx/src/weights.rs +++ b/zrml/styx/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_styx //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -64,8 +64,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3513` - // Minimum execution time: 34_110 nanoseconds. - Weight::from_parts(35_600_000, 3513) + // Minimum execution time: 31_891 nanoseconds. + Weight::from_parts(32_810_000, 3513) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -75,7 +75,7 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 8_320 nanoseconds. - Weight::from_parts(9_320_000, 0).saturating_add(T::DbWeight::get().writes(1)) + // Minimum execution time: 8_350 nanoseconds. + Weight::from_parts(8_680_000, 0).saturating_add(T::DbWeight::get().writes(1)) } } diff --git a/zrml/swaps/src/weights.rs b/zrml/swaps/src/weights.rs index 61a682b60..b7ff7648a 100644 --- a/zrml/swaps/src/weights.rs +++ b/zrml/swaps/src/weights.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for zrml_swaps //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: `2024-08-12`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: `2024-08-28`, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! HOSTNAME: `zeitgeist-benchmark`, CPU: `AMD EPYC 7601 32-Core Processor` //! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024` @@ -78,10 +78,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `753 + a * (144 ±0)` // Estimated: `7044 + a * (5196 ±0)` - // Minimum execution time: 118_353 nanoseconds. - Weight::from_parts(60_890_720, 7044) - // Standard Error: 45_895 - .saturating_add(Weight::from_parts(31_772_853, 0).saturating_mul(a.into())) + // Minimum execution time: 115_682 nanoseconds. + Weight::from_parts(57_135_146, 7044) + // Standard Error: 45_413 + .saturating_add(Weight::from_parts(32_382_863, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -100,8 +100,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `5419` // Estimated: `8784` - // Minimum execution time: 98_462 nanoseconds. - Weight::from_parts(102_052_000, 8784) + // Minimum execution time: 99_472 nanoseconds. + Weight::from_parts(101_822_000, 8784) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -117,8 +117,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `5419` // Estimated: `8784` - // Minimum execution time: 98_962 nanoseconds. - Weight::from_parts(104_812_000, 8784) + // Minimum execution time: 100_372 nanoseconds. + Weight::from_parts(104_022_000, 8784) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -133,10 +133,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `662 + a * (225 ±0)` // Estimated: `7044 + a * (5196 ±0)` - // Minimum execution time: 88_242 nanoseconds. - Weight::from_parts(44_161_526, 7044) - // Standard Error: 29_426 - .saturating_add(Weight::from_parts(23_854_394, 0).saturating_mul(a.into())) + // Minimum execution time: 90_542 nanoseconds. + Weight::from_parts(45_195_977, 7044) + // Standard Error: 36_535 + .saturating_add(Weight::from_parts(24_227_254, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -153,8 +153,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `6101` // Estimated: `8784` - // Minimum execution time: 88_502 nanoseconds. - Weight::from_parts(91_692_000, 8784) + // Minimum execution time: 88_641 nanoseconds. + Weight::from_parts(96_472_000, 8784) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -168,8 +168,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `6101` // Estimated: `8784` - // Minimum execution time: 83_481 nanoseconds. - Weight::from_parts(86_632_000, 8784) + // Minimum execution time: 84_563 nanoseconds. + Weight::from_parts(86_641_000, 8784) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -183,8 +183,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `4984` // Estimated: `11382` - // Minimum execution time: 142_643 nanoseconds. - Weight::from_parts(144_773_000, 11382) + // Minimum execution time: 140_663 nanoseconds. + Weight::from_parts(144_523_000, 11382) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -198,8 +198,8 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `4984` // Estimated: `11382` - // Minimum execution time: 141_863 nanoseconds. - Weight::from_parts(147_894_000, 11382) + // Minimum execution time: 139_963 nanoseconds. + Weight::from_parts(144_974_000, 11382) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -210,10 +210,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `136 + a * (54 ±0)` // Estimated: `7044` - // Minimum execution time: 14_581 nanoseconds. - Weight::from_parts(16_093_848, 7044) - // Standard Error: 2_407 - .saturating_add(Weight::from_parts(257_253, 0).saturating_mul(a.into())) + // Minimum execution time: 14_660 nanoseconds. + Weight::from_parts(16_289_076, 7044) + // Standard Error: 2_416 + .saturating_add(Weight::from_parts(266_489, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -224,10 +224,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `136 + a * (54 ±0)` // Estimated: `7044` - // Minimum execution time: 12_620 nanoseconds. - Weight::from_parts(13_732_152, 7044) - // Standard Error: 1_512 - .saturating_add(Weight::from_parts(164_975, 0).saturating_mul(a.into())) + // Minimum execution time: 12_770 nanoseconds. + Weight::from_parts(14_172_854, 7044) + // Standard Error: 1_581 + .saturating_add(Weight::from_parts(167_226, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -244,10 +244,10 @@ impl WeightInfoZeitgeist for WeightInfo { // Proof Size summary in bytes: // Measured: `505 + a * (182 ±0)` // Estimated: `7044 + a * (2598 ±0)` - // Minimum execution time: 66_331 nanoseconds. - Weight::from_parts(26_817_240, 7044) - // Standard Error: 114_270 - .saturating_add(Weight::from_parts(21_167_266, 0).saturating_mul(a.into())) + // Minimum execution time: 68_381 nanoseconds. + Weight::from_parts(22_885_205, 7044) + // Standard Error: 34_196 + .saturating_add(Weight::from_parts(21_629_035, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(2))