diff --git a/Cargo.lock b/Cargo.lock index e3c1676cd..4dfdc5765 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5516,7 +5516,6 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-utility", - "darwinia-account-migration", "darwinia-asset-limit", "darwinia-common-runtime", "darwinia-deposit", diff --git a/node/src/chain_spec/koi.rs b/node/src/chain_spec/koi.rs index e90220c77..f9dc20dfd 100644 --- a/node/src/chain_spec/koi.rs +++ b/node/src/chain_spec/koi.rs @@ -83,7 +83,7 @@ pub fn development_config() -> ChainSpec { None, Some(properties()), Extensions { - relay_chain: "paseo-local".into(), // You MUST set this to the correct network! + relay_chain: "rococo-local".into(), // You MUST set this to the correct network! para_id: 2105, }, ) @@ -132,7 +132,7 @@ pub fn local_config() -> ChainSpec { None, Some(properties()), Extensions { - relay_chain: "paseo-local".into(), // You MUST set this to the correct network! + relay_chain: "rococo-local".into(), // You MUST set this to the correct network! para_id: 2105, }, ) diff --git a/node/src/service/mod.rs b/node/src/service/mod.rs index a571a3c1e..3aeeb2f0e 100644 --- a/node/src/service/mod.rs +++ b/node/src/service/mod.rs @@ -77,7 +77,7 @@ pub trait IdentifyVariant { /// Returns if this is a configuration for the `Koi` network. fn is_koi(&self) -> bool { - self.id().starts_with("koi") + self.id().starts_with("darwinia-koi") } /// Returns true if this configuration is for a development network. diff --git a/pallet/staking/src/weights.rs b/pallet/staking/src/weights.rs index 9f360fc89..00ba644b7 100644 --- a/pallet/staking/src/weights.rs +++ b/pallet/staking/src/weights.rs @@ -21,7 +21,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Xaviers-MacBook-Pro-16.local`, CPU: `` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("koi-dev"), DB CACHE: 1024 // Executed Command: diff --git a/runtime/koi/Cargo.toml b/runtime/koi/Cargo.toml index 24a923c1c..c0cfef743 100644 --- a/runtime/koi/Cargo.toml +++ b/runtime/koi/Cargo.toml @@ -33,7 +33,6 @@ parachain-info = { workspace = true } cumulus-pallet-session-benchmarking = { workspace = true, optional = true } # darwinia -darwinia-account-migration = { workspace = true } darwinia-asset-limit = { workspace = true } darwinia-common-runtime = { workspace = true } darwinia-deposit = { workspace = true } @@ -155,7 +154,6 @@ std = [ "cumulus-pallet-session-benchmarking?/std", # darwinia - "darwinia-account-migration/std", "darwinia-asset-limit/std", "darwinia-common-runtime/std", "darwinia-deposit/std", @@ -279,7 +277,6 @@ runtime-benchmarks = [ "cumulus-pallet-session-benchmarking/runtime-benchmarks", # darwinia - "darwinia-account-migration/runtime-benchmarks", "darwinia-common-runtime/runtime-benchmarks", "darwinia-deposit/runtime-benchmarks", "darwinia-ethtx-forwarder/runtime-benchmarks", @@ -342,7 +339,6 @@ try-runtime = [ "parachain-info/try-runtime", # darwinia - "darwinia-account-migration/try-runtime", "darwinia-asset-limit/try-runtime", "darwinia-deposit/try-runtime", "darwinia-ethtx-forwarder/try-runtime", diff --git a/runtime/koi/src/lib.rs b/runtime/koi/src/lib.rs index fa52334b0..fa04055cc 100644 --- a/runtime/koi/src/lib.rs +++ b/runtime/koi/src/lib.rs @@ -102,46 +102,45 @@ frame_support::construct_runtime! { TransactionPayment: pallet_transaction_payment = 5, Assets: pallet_assets = 6, Deposit: darwinia_deposit = 7, - AccountMigration: darwinia_account_migration = 8, // Consensus stuff. - Authorship: pallet_authorship = 9, - DarwiniaStaking: darwinia_staking = 10, - Session: pallet_session = 11, - Aura: pallet_aura = 12, - AuraExt: cumulus_pallet_aura_ext = 13, + Authorship: pallet_authorship = 8, + DarwiniaStaking: darwinia_staking = 9, + Session: pallet_session = 10, + Aura: pallet_aura = 11, + AuraExt: cumulus_pallet_aura_ext = 12, // Governance stuff. - TechnicalCommittee: pallet_collective:: = 14, - Treasury: pallet_treasury = 15, - ConvictionVoting: pallet_conviction_voting = 16, - Referenda: pallet_referenda = 17, - Origins: custom_origins = 18, - Whitelist: pallet_whitelist = 19, + TechnicalCommittee: pallet_collective:: = 13, + Treasury: pallet_treasury = 14, + ConvictionVoting: pallet_conviction_voting = 15, + Referenda: pallet_referenda = 16, + Origins: custom_origins = 17, + Whitelist: pallet_whitelist = 18, // Utility stuff. - Sudo: pallet_sudo = 20, - Utility: pallet_utility = 21, - Identity: pallet_identity = 22, - Scheduler: pallet_scheduler = 23, - Preimage: pallet_preimage = 24, - Proxy: pallet_proxy = 25, - TxPause: pallet_tx_pause = 26, + Sudo: pallet_sudo = 19, + Utility: pallet_utility = 20, + Identity: pallet_identity = 21, + Scheduler: pallet_scheduler = 22, + Preimage: pallet_preimage = 23, + Proxy: pallet_proxy = 24, + TxPause: pallet_tx_pause = 25, // XCM stuff. - XcmpQueue: cumulus_pallet_xcmp_queue = 27, - PolkadotXcm: pallet_xcm = 28, - CumulusXcm: cumulus_pallet_xcm = 29, - EthereumXcm: pallet_ethereum_xcm = 30, - DmpQueue: cumulus_pallet_dmp_queue = 31, - AssetManager: pallet_asset_manager = 32, - XTokens: orml_xtokens = 33, - AssetLimit: darwinia_asset_limit = 34, + XcmpQueue: cumulus_pallet_xcmp_queue = 26, + PolkadotXcm: pallet_xcm = 27, + CumulusXcm: cumulus_pallet_xcm = 28, + EthereumXcm: pallet_ethereum_xcm = 29, + DmpQueue: cumulus_pallet_dmp_queue = 30, + AssetManager: pallet_asset_manager = 31, + XTokens: orml_xtokens = 32, + AssetLimit: darwinia_asset_limit = 33, // EVM stuff. - Ethereum: pallet_ethereum = 35, - EVM: pallet_evm = 36, - EthTxForwarder: darwinia_ethtx_forwarder = 37, + Ethereum: pallet_ethereum = 34, + EVM: pallet_evm = 35, + EthTxForwarder: darwinia_ethtx_forwarder = 36, } } @@ -150,7 +149,6 @@ frame_benchmarking::define_benchmarks! { // cumulus [cumulus_pallet_xcmp_queue, XcmpQueue] // darwinia - [darwinia_account_migration, AccountMigration] [darwinia_deposit, Deposit] [darwinia_staking, DarwiniaStaking] // substrate diff --git a/runtime/koi/src/pallets.rs b/runtime/koi/src/pallets.rs index 86472c119..f80b55556 100644 --- a/runtime/koi/src/pallets.rs +++ b/runtime/koi/src/pallets.rs @@ -46,8 +46,6 @@ mod deposit; #[cfg(feature = "runtime-benchmarks")] pub use deposit::*; -mod account_migration; - // Consensus stuff. mod authorship; diff --git a/runtime/koi/src/pallets/account_migration.rs b/runtime/koi/src/pallets/account_migration.rs deleted file mode 100644 index a13c1a789..000000000 --- a/runtime/koi/src/pallets/account_migration.rs +++ /dev/null @@ -1,25 +0,0 @@ -// This file is part of Darwinia. -// -// Copyright (C) Darwinia Network -// SPDX-License-Identifier: GPL-3.0 -// -// Darwinia is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// Darwinia is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with Darwinia. If not, see . - -// darwinia -use crate::*; - -impl darwinia_account_migration::Config for Runtime { - type RuntimeEvent = RuntimeEvent; - type WeightInfo = weights::darwinia_account_migration::WeightInfo; -} diff --git a/runtime/koi/src/pallets/governance.rs b/runtime/koi/src/pallets/governance.rs index 5dc6786ae..7383ee5a3 100644 --- a/runtime/koi/src/pallets/governance.rs +++ b/runtime/koi/src/pallets/governance.rs @@ -23,7 +23,7 @@ pub use origin::{custom_origins, GeneralAdmin}; mod track; use track::*; -pub use pallet_collective::Instance2 as TechnicalCollective; +pub use pallet_collective::Instance1 as TechnicalCollective; pub(super) use crate::*; diff --git a/runtime/koi/src/pallets/tx_pause.rs b/runtime/koi/src/pallets/tx_pause.rs index 17f5964eb..8c25d6d4e 100644 --- a/runtime/koi/src/pallets/tx_pause.rs +++ b/runtime/koi/src/pallets/tx_pause.rs @@ -41,8 +41,7 @@ impl frame_support::traits::Contains pallet, b"Balances" | b"Assets" | b"Vesting" - | b"Deposit" | b"AccountMigration" - | b"DarwiniaStaking" + | b"Deposit" | b"DarwiniaStaking" | b"Ethereum" | b"EVM" | b"EthTxForwarder" ) diff --git a/runtime/koi/src/weights.rs b/runtime/koi/src/weights.rs index e5cf9a199..aa70513e0 100644 --- a/runtime/koi/src/weights.rs +++ b/runtime/koi/src/weights.rs @@ -21,7 +21,6 @@ #![allow(clippy::unnecessary_cast)] pub mod cumulus_pallet_xcmp_queue; -pub mod darwinia_account_migration; pub mod darwinia_deposit; pub mod darwinia_staking; pub mod frame_system; diff --git a/runtime/koi/src/weights/cumulus_pallet_xcmp_queue.rs b/runtime/koi/src/weights/cumulus_pallet_xcmp_queue.rs index f1991cd4e..f7723d76c 100644 --- a/runtime/koi/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,7 +61,7 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `42` // Estimated: `1527` - // Minimum execution time: 6_000_000 picoseconds. + // Minimum execution time: 5_000_000 picoseconds. Weight::from_parts(6_000_000, 0) .saturating_add(Weight::from_parts(0, 1527)) .saturating_add(T::DbWeight::get().reads(1)) diff --git a/runtime/koi/src/weights/darwinia_account_migration.rs b/runtime/koi/src/weights/darwinia_account_migration.rs deleted file mode 100644 index 2aed4d837..000000000 --- a/runtime/koi/src/weights/darwinia_account_migration.rs +++ /dev/null @@ -1,149 +0,0 @@ -// This file is part of Darwinia. -// -// Copyright (C) Darwinia Network -// SPDX-License-Identifier: GPL-3.0 -// -// Darwinia is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// Darwinia is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with Darwinia. If not, see . - -//! Autogenerated weights for `darwinia_account_migration` -//! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` -//! WORST CASE MAP SIZE: `1000000` -//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 - -// Executed Command: -// target/release/darwinia -// benchmark -// pallet -// --header -// .maintain/license-header -// --heap-pages -// 4096 -// --chain -// koi-dev -// --output -// runtime/koi/src/weights -// --pallet -// * -// --extrinsic -// * -// --steps -// 50 -// --repeat -// 20 - -#![cfg_attr(rustfmt, rustfmt_skip)] -#![allow(unused_parens)] -#![allow(unused_imports)] -#![allow(missing_docs)] - -use frame_support::{traits::Get, weights::Weight}; -use core::marker::PhantomData; - -/// Weight functions for `darwinia_account_migration`. -pub struct WeightInfo(PhantomData); -impl darwinia_account_migration::WeightInfo for WeightInfo { - /// Storage: `AccountMigration::Accounts` (r:1 w:1) - /// Proof: `AccountMigration::Accounts` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::KtonAccounts` (r:1 w:1) - /// Proof: `AccountMigration::KtonAccounts` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) - /// Storage: `Assets::Asset` (r:1 w:1) - /// Proof: `Assets::Asset` (`max_values`: None, `max_size`: Some(166), added: 2641, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Identities` (r:1 w:1) - /// Proof: `AccountMigration::Identities` (`max_values`: None, `max_size`: Some(9219), added: 11694, mode: `MaxEncodedLen`) - /// Storage: `Identity::Registrars` (r:1 w:1) - /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(901), added: 1396, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Ledgers` (r:1 w:1) - /// Proof: `AccountMigration::Ledgers` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:2 w:3) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Deposits` (r:1 w:1) - /// Proof: `AccountMigration::Deposits` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `DarwiniaStaking::Ledgers` (r:0 w:1) - /// Proof: `DarwiniaStaking::Ledgers` (`max_values`: None, `max_size`: Some(1078), added: 3553, mode: `MaxEncodedLen`) - /// Storage: `Identity::IdentityOf` (r:0 w:1) - /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7526), added: 10001, mode: `MaxEncodedLen`) - /// Storage: `Assets::Account` (r:0 w:1) - /// Proof: `Assets::Account` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) - /// Storage: `Deposit::Deposits` (r:0 w:1) - /// Proof: `Deposit::Deposits` (`max_values`: None, `max_size`: Some(26150), added: 28625, mode: `MaxEncodedLen`) - fn migrate() -> Weight { - // Proof Size summary in bytes: - // Measured: `28848` - // Estimated: `32313` - // Minimum execution time: 176_000_000 picoseconds. - Weight::from_parts(187_000_000, 0) - .saturating_add(Weight::from_parts(0, 32313)) - .saturating_add(T::DbWeight::get().reads(9)) - .saturating_add(T::DbWeight::get().writes(14)) - } - /// Storage: `AccountMigration::Multisigs` (r:0 w:1) - /// Proof: `AccountMigration::Multisigs` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `AccountMigration::Accounts` (r:1 w:1) - /// Proof: `AccountMigration::Accounts` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::KtonAccounts` (r:1 w:1) - /// Proof: `AccountMigration::KtonAccounts` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) - /// Storage: `Assets::Asset` (r:1 w:1) - /// Proof: `Assets::Asset` (`max_values`: None, `max_size`: Some(166), added: 2641, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Identities` (r:1 w:1) - /// Proof: `AccountMigration::Identities` (`max_values`: None, `max_size`: Some(9219), added: 11694, mode: `MaxEncodedLen`) - /// Storage: `Identity::Registrars` (r:1 w:1) - /// Proof: `Identity::Registrars` (`max_values`: Some(1), `max_size`: Some(901), added: 1396, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Ledgers` (r:1 w:1) - /// Proof: `AccountMigration::Ledgers` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:2 w:3) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) - /// Storage: `AccountMigration::Deposits` (r:1 w:1) - /// Proof: `AccountMigration::Deposits` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `DarwiniaStaking::Ledgers` (r:0 w:1) - /// Proof: `DarwiniaStaking::Ledgers` (`max_values`: None, `max_size`: Some(1078), added: 3553, mode: `MaxEncodedLen`) - /// Storage: `Identity::IdentityOf` (r:0 w:1) - /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7526), added: 10001, mode: `MaxEncodedLen`) - /// Storage: `Assets::Account` (r:0 w:1) - /// Proof: `Assets::Account` (`max_values`: None, `max_size`: Some(114), added: 2589, mode: `MaxEncodedLen`) - /// Storage: `Deposit::Deposits` (r:0 w:1) - /// Proof: `Deposit::Deposits` (`max_values`: None, `max_size`: Some(26150), added: 28625, mode: `MaxEncodedLen`) - /// The range of component `x` is `[0, 99]`. - /// The range of component `y` is `[0, 99]`. - /// The range of component `z` is `[0, 99]`. - fn migrate_multisig(x: u32, _y: u32, z: u32, ) -> Weight { - // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `2 + x * (163 ±0) + z * (163 ±0)` - // Minimum execution time: 7_000_000 picoseconds. - Weight::from_parts(27_165_232, 0) - .saturating_add(Weight::from_parts(0, 2)) - // Standard Error: 15_717 - .saturating_add(Weight::from_parts(9_637, 0).saturating_mul(x.into())) - .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) - .saturating_add(Weight::from_parts(0, 163).saturating_mul(x.into())) - .saturating_add(Weight::from_parts(0, 163).saturating_mul(z.into())) - } - /// Storage: `AccountMigration::Multisigs` (r:1 w:1) - /// Proof: `AccountMigration::Multisigs` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `System::Account` (r:1 w:0) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) - fn complete_multisig_migration() -> Weight { - // Proof Size summary in bytes: - // Measured: `3499` - // Estimated: `6964` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(12_000_000, 0) - .saturating_add(Weight::from_parts(0, 6964)) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(1)) - } -} diff --git a/runtime/koi/src/weights/darwinia_deposit.rs b/runtime/koi/src/weights/darwinia_deposit.rs index ce646a2c9..b4cd34a8e 100644 --- a/runtime/koi/src/weights/darwinia_deposit.rs +++ b/runtime/koi/src/weights/darwinia_deposit.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `darwinia_deposit` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -69,8 +69,8 @@ impl darwinia_deposit::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `26812` // Estimated: `29615` - // Minimum execution time: 77_000_000 picoseconds. - Weight::from_parts(97_000_000, 0) + // Minimum execution time: 86_000_000 picoseconds. + Weight::from_parts(88_000_000, 0) .saturating_add(Weight::from_parts(0, 29615)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) @@ -85,8 +85,8 @@ impl darwinia_deposit::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `26541` // Estimated: `29615` - // Minimum execution time: 1_590_000_000 picoseconds. - Weight::from_parts(1_888_000_000, 0) + // Minimum execution time: 1_846_000_000 picoseconds. + Weight::from_parts(1_872_000_000, 0) .saturating_add(Weight::from_parts(0, 29615)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -105,8 +105,8 @@ impl darwinia_deposit::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `26863` // Estimated: `29615` - // Minimum execution time: 86_000_000 picoseconds. - Weight::from_parts(107_000_000, 0) + // Minimum execution time: 93_000_000 picoseconds. + Weight::from_parts(97_000_000, 0) .saturating_add(Weight::from_parts(0, 29615)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/koi/src/weights/darwinia_staking.rs b/runtime/koi/src/weights/darwinia_staking.rs index 128365bb3..b1c0c84b9 100644 --- a/runtime/koi/src/weights/darwinia_staking.rs +++ b/runtime/koi/src/weights/darwinia_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `darwinia_staking` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -70,11 +70,11 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `7088 + x * (25 ±0)` // Estimated: `29615` - // Minimum execution time: 46_000_000 picoseconds. - Weight::from_parts(725_925_936, 0) + // Minimum execution time: 54_000_000 picoseconds. + Weight::from_parts(678_440_249, 0) .saturating_add(Weight::from_parts(0, 29615)) - // Standard Error: 271_216 - .saturating_add(Weight::from_parts(13_863_338, 0).saturating_mul(x.into())) + // Standard Error: 236_449 + .saturating_add(Weight::from_parts(11_970_473, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -93,11 +93,11 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `7415 + x * (26 ±0)` // Estimated: `29615` - // Minimum execution time: 47_000_000 picoseconds. - Weight::from_parts(780_003_150, 0) + // Minimum execution time: 53_000_000 picoseconds. + Weight::from_parts(666_940_010, 0) .saturating_add(Weight::from_parts(0, 29615)) - // Standard Error: 271_982 - .saturating_add(Weight::from_parts(13_880_385, 0).saturating_mul(x.into())) + // Standard Error: 236_445 + .saturating_add(Weight::from_parts(11_982_039, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -107,8 +107,8 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3497` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(11_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3497)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -123,8 +123,8 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `574` // Estimated: `4543` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 12_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 4543)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -154,8 +154,8 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1845` // Estimated: `5310` - // Minimum execution time: 195_000_000 picoseconds. - Weight::from_parts(208_000_000, 0) + // Minimum execution time: 202_000_000 picoseconds. + Weight::from_parts(204_000_000, 0) .saturating_add(Weight::from_parts(0, 5310)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) @@ -167,7 +167,7 @@ impl darwinia_staking::WeightInfo for WeightInfo { // Measured: `0` // Estimated: `0` // Minimum execution time: 2_000_000 picoseconds. - Weight::from_parts(2_000_000, 0) + Weight::from_parts(3_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/koi/src/weights/frame_system.rs b/runtime/koi/src/weights/frame_system.rs index 9d314556e..691a1b252 100644 --- a/runtime/koi/src/weights/frame_system.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -60,11 +60,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_000_000 picoseconds. - Weight::from_parts(355_125, 0) + // Minimum execution time: 2_000_000 picoseconds. + Weight::from_parts(1_906_879, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(169, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(145, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { @@ -72,10 +72,10 @@ impl frame_system::WeightInfo for WeightInfo { // Measured: `0` // Estimated: `0` // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(6_000_000, 0) + Weight::from_parts(7_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_089, 0).saturating_mul(b.into())) + // Standard Error: 0 + .saturating_add(Weight::from_parts(909, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -85,7 +85,7 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 2_000_000 picoseconds. + // Minimum execution time: 3_000_000 picoseconds. Weight::from_parts(4_000_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) @@ -107,8 +107,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `198` // Estimated: `1683` - // Minimum execution time: 80_688_000_000 picoseconds. - Weight::from_parts(82_320_000_000, 0) + // Minimum execution time: 70_274_000_000 picoseconds. + Weight::from_parts(71_428_000_000, 0) .saturating_add(Weight::from_parts(0, 1683)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -120,11 +120,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_000_000 picoseconds. + // Minimum execution time: 2_000_000 picoseconds. Weight::from_parts(2_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_256 - .saturating_add(Weight::from_parts(788_852, 0).saturating_mul(i.into())) + // Standard Error: 768 + .saturating_add(Weight::from_parts(717_336, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -134,11 +134,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_000_000 picoseconds. + // Minimum execution time: 2_000_000 picoseconds. Weight::from_parts(2_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_102 - .saturating_add(Weight::from_parts(558_567, 0).saturating_mul(i.into())) + // Standard Error: 741 + .saturating_add(Weight::from_parts(507_654, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -146,13 +146,13 @@ impl frame_system::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 1000]`. fn kill_prefix(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `99 + p * (69 ±0)` - // Estimated: `98 + p * (70 ±0)` + // Measured: `88 + p * (69 ±0)` + // Estimated: `89 + p * (70 ±0)` // Minimum execution time: 3_000_000 picoseconds. - Weight::from_parts(3_000_000, 0) - .saturating_add(Weight::from_parts(0, 98)) - // Standard Error: 1_343 - .saturating_add(Weight::from_parts(1_022_367, 0).saturating_mul(p.into())) + Weight::from_parts(4_000_000, 0) + .saturating_add(Weight::from_parts(0, 89)) + // Standard Error: 1_048 + .saturating_add(Weight::from_parts(940_653, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into())) diff --git a/runtime/koi/src/weights/pallet_assets.rs b/runtime/koi/src/weights/pallet_assets.rs index 343758f54..f1ea4619b 100644 --- a/runtime/koi/src/weights/pallet_assets.rs +++ b/runtime/koi/src/weights/pallet_assets.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_assets` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,8 +61,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `157` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -73,7 +73,7 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `157` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. + // Minimum execution time: 11_000_000 picoseconds. Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) @@ -85,8 +85,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -102,11 +102,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `821 + c * (183 ±0)` // Estimated: `3631 + c * (2591 ±0)` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 15_000_000 picoseconds. + Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) - // Standard Error: 9_820 - .saturating_add(Weight::from_parts(13_025_528, 0).saturating_mul(c.into())) + // Standard Error: 5_409 + .saturating_add(Weight::from_parts(12_336_170, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -123,10 +123,10 @@ impl pallet_assets::WeightInfo for WeightInfo { // Measured: `458 + a * (74 ±0)` // Estimated: `3631 + a * (2603 ±0)` // Minimum execution time: 14_000_000 picoseconds. - Weight::from_parts(16_000_000, 0) + Weight::from_parts(15_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) - // Standard Error: 6_053 - .saturating_add(Weight::from_parts(4_207_005, 0).saturating_mul(a.into())) + // Standard Error: 3_174 + .saturating_add(Weight::from_parts(3_943_810, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -141,8 +141,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `350` // Estimated: `3631` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(16_000_000, 0) + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -155,8 +155,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `350` // Estimated: `3631` - // Minimum execution time: 21_000_000 picoseconds. - Weight::from_parts(25_000_000, 0) + // Minimum execution time: 23_000_000 picoseconds. + Weight::from_parts(24_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -169,7 +169,7 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `410` // Estimated: `3631` - // Minimum execution time: 26_000_000 picoseconds. + // Minimum execution time: 29_000_000 picoseconds. Weight::from_parts(30_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) @@ -185,8 +185,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `449` // Estimated: `6168` - // Minimum execution time: 37_000_000 picoseconds. - Weight::from_parts(43_000_000, 0) + // Minimum execution time: 43_000_000 picoseconds. + Weight::from_parts(44_000_000, 0) .saturating_add(Weight::from_parts(0, 6168)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -201,8 +201,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `449` // Estimated: `6168` - // Minimum execution time: 32_000_000 picoseconds. - Weight::from_parts(38_000_000, 0) + // Minimum execution time: 35_000_000 picoseconds. + Weight::from_parts(36_000_000, 0) .saturating_add(Weight::from_parts(0, 6168)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -217,8 +217,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `449` // Estimated: `6168` - // Minimum execution time: 35_000_000 picoseconds. - Weight::from_parts(40_000_000, 0) + // Minimum execution time: 41_000_000 picoseconds. + Weight::from_parts(43_000_000, 0) .saturating_add(Weight::from_parts(0, 6168)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -231,8 +231,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `410` // Estimated: `3631` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(14_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(15_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -245,8 +245,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `410` // Estimated: `3631` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(15_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -257,8 +257,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(11_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -269,8 +269,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -283,8 +283,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `350` // Estimated: `3631` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(12_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -295,8 +295,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 12_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -307,17 +307,15 @@ impl pallet_assets::WeightInfo for WeightInfo { /// Proof: `Assets::Metadata` (`max_values`: None, `max_size`: Some(144), added: 2619, mode: `MaxEncodedLen`) /// The range of component `n` is `[0, 50]`. /// The range of component `s` is `[0, 50]`. - fn set_metadata(n: u32, s: u32, ) -> Weight { + fn set_metadata(_n: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `350` // Estimated: `3631` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(13_025_404, 0) + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(14_040_484, 0) .saturating_add(Weight::from_parts(0, 3631)) - // Standard Error: 2_782 - .saturating_add(Weight::from_parts(11_874, 0).saturating_mul(n.into())) - // Standard Error: 2_782 - .saturating_add(Weight::from_parts(7_438, 0).saturating_mul(s.into())) + // Standard Error: 589 + .saturating_add(Weight::from_parts(641, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -329,8 +327,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `478` // Estimated: `3631` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -345,13 +343,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `237` // Estimated: `3631` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(12_826_368, 0) + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(13_656_035, 0) .saturating_add(Weight::from_parts(0, 3631)) - // Standard Error: 2_888 - .saturating_add(Weight::from_parts(6_961, 0).saturating_mul(n.into())) - // Standard Error: 2_888 - .saturating_add(Weight::from_parts(3_790, 0).saturating_mul(s.into())) + // Standard Error: 1_036 + .saturating_add(Weight::from_parts(921, 0).saturating_mul(n.into())) + // Standard Error: 1_036 + .saturating_add(Weight::from_parts(2_512, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -375,8 +373,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 12_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -389,8 +387,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(14_000_000, 0) + // Minimum execution time: 16_000_000 picoseconds. + Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -407,7 +405,7 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `599` // Estimated: `6168` - // Minimum execution time: 41_000_000 picoseconds. + // Minimum execution time: 46_000_000 picoseconds. Weight::from_parts(48_000_000, 0) .saturating_add(Weight::from_parts(0, 6168)) .saturating_add(T::DbWeight::get().reads(5)) @@ -421,8 +419,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `457` // Estimated: `3631` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(19_000_000, 0) + // Minimum execution time: 17_000_000 picoseconds. + Weight::from_parts(18_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -435,8 +433,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `457` // Estimated: `3631` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(20_000_000, 0) + // Minimum execution time: 17_000_000 picoseconds. + Weight::from_parts(18_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -447,8 +445,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `307` // Estimated: `3631` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(11_000_000, 0) + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(13_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -463,7 +461,7 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `512` // Estimated: `3631` - // Minimum execution time: 30_000_000 picoseconds. + // Minimum execution time: 32_000_000 picoseconds. Weight::from_parts(33_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(3)) @@ -477,8 +475,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `350` // Estimated: `3631` - // Minimum execution time: 27_000_000 picoseconds. - Weight::from_parts(30_000_000, 0) + // Minimum execution time: 30_000_000 picoseconds. + Weight::from_parts(32_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -493,8 +491,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `590` // Estimated: `3631` - // Minimum execution time: 28_000_000 picoseconds. - Weight::from_parts(33_000_000, 0) + // Minimum execution time: 30_000_000 picoseconds. + Weight::from_parts(31_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -507,7 +505,7 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `448` // Estimated: `3631` - // Minimum execution time: 25_000_000 picoseconds. + // Minimum execution time: 27_000_000 picoseconds. Weight::from_parts(28_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) @@ -521,8 +519,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `410` // Estimated: `3631` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(12_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(15_000_000, 0) .saturating_add(Weight::from_parts(0, 3631)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/koi/src/weights/pallet_balances.rs b/runtime/koi/src/weights/pallet_balances.rs index ce5f394a6..caa5d992c 100644 --- a/runtime/koi/src/weights/pallet_balances.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,8 +61,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `39` // Estimated: `3581` - // Minimum execution time: 44_000_000 picoseconds. - Weight::from_parts(45_000_000, 0) + // Minimum execution time: 52_000_000 picoseconds. + Weight::from_parts(54_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -73,8 +73,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `39` // Estimated: `3581` - // Minimum execution time: 39_000_000 picoseconds. - Weight::from_parts(47_000_000, 0) + // Minimum execution time: 43_000_000 picoseconds. + Weight::from_parts(44_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -85,7 +85,7 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `195` // Estimated: `3581` - // Minimum execution time: 13_000_000 picoseconds. + // Minimum execution time: 16_000_000 picoseconds. Weight::from_parts(17_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) @@ -97,7 +97,7 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `195` // Estimated: `3581` - // Minimum execution time: 21_000_000 picoseconds. + // Minimum execution time: 24_000_000 picoseconds. Weight::from_parts(24_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) @@ -109,7 +109,7 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `234` // Estimated: `6172` - // Minimum execution time: 48_000_000 picoseconds. + // Minimum execution time: 54_000_000 picoseconds. Weight::from_parts(56_000_000, 0) .saturating_add(Weight::from_parts(0, 6172)) .saturating_add(T::DbWeight::get().reads(2)) @@ -121,8 +121,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `39` // Estimated: `3581` - // Minimum execution time: 45_000_000 picoseconds. - Weight::from_parts(46_000_000, 0) + // Minimum execution time: 55_000_000 picoseconds. + Weight::from_parts(56_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -133,8 +133,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `195` // Estimated: `3581` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(19_000_000, 0) + // Minimum execution time: 19_000_000 picoseconds. + Weight::from_parts(20_000_000, 0) .saturating_add(Weight::from_parts(0, 3581)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -146,11 +146,11 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `424 + u * (124 ±0)` // Estimated: `990 + u * (2591 ±0)` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(16_000_000, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(18_000_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 9_672 - .saturating_add(Weight::from_parts(15_204_961, 0).saturating_mul(u.into())) + // Standard Error: 6_373 + .saturating_add(Weight::from_parts(14_455_756, 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, 2591).saturating_mul(u.into())) diff --git a/runtime/koi/src/weights/pallet_collective.rs b/runtime/koi/src/weights/pallet_collective.rs index 9ea7deb47..27b592ee3 100644 --- a/runtime/koi/src/weights/pallet_collective.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -69,14 +69,14 @@ impl pallet_collective::WeightInfo for WeightInfo { fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + m * (2021 ±0) + p * (2026 ±0)` - // Estimated: `12200 + m * (1231 ±14) + p * (3660 ±14)` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(12_000_000, 0) + // Estimated: `12200 + m * (1231 ±15) + p * (3660 ±15)` + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 12200)) - // Standard Error: 37_481 - .saturating_add(Weight::from_parts(2_506_125, 0).saturating_mul(m.into())) - // Standard Error: 37_481 - .saturating_add(Weight::from_parts(5_854_998, 0).saturating_mul(p.into())) + // Standard Error: 43_265 + .saturating_add(Weight::from_parts(2_236_338, 0).saturating_mul(m.into())) + // Standard Error: 43_265 + .saturating_add(Weight::from_parts(4_899_899, 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)) @@ -94,13 +94,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `73 + m * (20 ±0)` // Estimated: `3997 + m * (20 ±0)` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(16_032_197, 0) + // Minimum execution time: 16_000_000 picoseconds. + Weight::from_parts(16_159_627, 0) .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 183 - .saturating_add(Weight::from_parts(1_095, 0).saturating_mul(b.into())) - // Standard Error: 1_896 - .saturating_add(Weight::from_parts(11_122, 0).saturating_mul(m.into())) + // Standard Error: 52 + .saturating_add(Weight::from_parts(920, 0).saturating_mul(b.into())) + // Standard Error: 536 + .saturating_add(Weight::from_parts(5_974, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 20).saturating_mul(m.into())) } @@ -116,13 +116,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `73 + m * (20 ±0)` // Estimated: `3997 + m * (20 ±0)` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(18_103_475, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(18_185_562, 0) .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 185 - .saturating_add(Weight::from_parts(1_354, 0).saturating_mul(b.into())) - // Standard Error: 1_916 - .saturating_add(Weight::from_parts(11_984, 0).saturating_mul(m.into())) + // Standard Error: 44 + .saturating_add(Weight::from_parts(1_200, 0).saturating_mul(b.into())) + // Standard Error: 462 + .saturating_add(Weight::from_parts(6_289, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(Weight::from_parts(0, 20).saturating_mul(m.into())) } @@ -143,15 +143,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `357 + m * (20 ±0) + p * (36 ±0)` // Estimated: `3751 + m * (21 ±0) + p * (36 ±0)` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(21_292_487, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(22_431_655, 0) .saturating_add(Weight::from_parts(0, 3751)) - // Standard Error: 214 - .saturating_add(Weight::from_parts(2_058, 0).saturating_mul(b.into())) - // Standard Error: 2_239 - .saturating_add(Weight::from_parts(21_239, 0).saturating_mul(m.into())) - // Standard Error: 2_211 - .saturating_add(Weight::from_parts(163_399, 0).saturating_mul(p.into())) + // Standard Error: 82 + .saturating_add(Weight::from_parts(1_217, 0).saturating_mul(b.into())) + // Standard Error: 856 + .saturating_add(Weight::from_parts(9_169, 0).saturating_mul(m.into())) + // Standard Error: 845 + .saturating_add(Weight::from_parts(119_530, 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, 21).saturating_mul(m.into())) @@ -166,11 +166,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `832 + m * (40 ±0)` // Estimated: `4296 + m * (40 ±0)` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(19_931_876, 0) + // Minimum execution time: 16_000_000 picoseconds. + Weight::from_parts(17_437_339, 0) .saturating_add(Weight::from_parts(0, 4296)) - // Standard Error: 2_436 - .saturating_add(Weight::from_parts(15_381, 0).saturating_mul(m.into())) + // Standard Error: 950 + .saturating_add(Weight::from_parts(10_124, 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, 40).saturating_mul(m.into())) @@ -189,13 +189,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `409 + m * (40 ±0) + p * (36 ±0)` // Estimated: `3854 + m * (41 ±0) + p * (36 ±0)` - // Minimum execution time: 20_000_000 picoseconds. - Weight::from_parts(24_338_462, 0) + // Minimum execution time: 24_000_000 picoseconds. + Weight::from_parts(24_536_900, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 2_548 - .saturating_add(Weight::from_parts(17_095, 0).saturating_mul(m.into())) - // Standard Error: 2_484 - .saturating_add(Weight::from_parts(160_876, 0).saturating_mul(p.into())) + // Standard Error: 813 + .saturating_add(Weight::from_parts(4_357, 0).saturating_mul(m.into())) + // Standard Error: 792 + .saturating_add(Weight::from_parts(112_291, 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, 41).saturating_mul(m.into())) @@ -218,13 +218,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `715 + b * (1 ±0) + m * (40 ±0) + p * (40 ±0)` // Estimated: `4032 + b * (1 ±0) + m * (42 ±0) + p * (40 ±0)` - // Minimum execution time: 33_000_000 picoseconds. - Weight::from_parts(39_165_468, 0) + // Minimum execution time: 36_000_000 picoseconds. + Weight::from_parts(38_466_792, 0) .saturating_add(Weight::from_parts(0, 4032)) - // Standard Error: 371 - .saturating_add(Weight::from_parts(2_349, 0).saturating_mul(b.into())) - // Standard Error: 3_826 - .saturating_add(Weight::from_parts(197_626, 0).saturating_mul(p.into())) + // Standard Error: 122 + .saturating_add(Weight::from_parts(524, 0).saturating_mul(b.into())) + // Standard Error: 1_289 + .saturating_add(Weight::from_parts(4_641, 0).saturating_mul(m.into())) + // Standard Error: 1_257 + .saturating_add(Weight::from_parts(131_843, 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())) @@ -247,13 +249,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `429 + m * (40 ±0) + p * (36 ±0)` // Estimated: `3874 + m * (41 ±0) + p * (36 ±0)` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(26_865_462, 0) + // Minimum execution time: 26_000_000 picoseconds. + Weight::from_parts(26_817_922, 0) .saturating_add(Weight::from_parts(0, 3874)) - // Standard Error: 2_539 - .saturating_add(Weight::from_parts(17_247, 0).saturating_mul(m.into())) - // Standard Error: 2_476 - .saturating_add(Weight::from_parts(161_443, 0).saturating_mul(p.into())) + // Standard Error: 1_252 + .saturating_add(Weight::from_parts(7_411, 0).saturating_mul(m.into())) + // Standard Error: 1_221 + .saturating_add(Weight::from_parts(113_499, 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, 41).saturating_mul(m.into())) @@ -278,15 +280,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `735 + b * (1 ±0) + m * (40 ±0) + p * (40 ±0)` // Estimated: `4052 + b * (1 ±0) + m * (42 ±0) + p * (40 ±0)` - // Minimum execution time: 35_000_000 picoseconds. - Weight::from_parts(40_894_421, 0) + // Minimum execution time: 39_000_000 picoseconds. + Weight::from_parts(42_727_420, 0) .saturating_add(Weight::from_parts(0, 4052)) - // Standard Error: 344 - .saturating_add(Weight::from_parts(2_460, 0).saturating_mul(b.into())) - // Standard Error: 3_644 - .saturating_add(Weight::from_parts(22_186, 0).saturating_mul(m.into())) - // Standard Error: 3_552 - .saturating_add(Weight::from_parts(193_306, 0).saturating_mul(p.into())) + // Standard Error: 1_458 + .saturating_add(Weight::from_parts(128_180, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -304,11 +302,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `226 + p * (32 ±0)` // Estimated: `1711 + p * (32 ±0)` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(14_214_399, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(15_598_814, 0) .saturating_add(Weight::from_parts(0, 1711)) - // Standard Error: 2_258 - .saturating_add(Weight::from_parts(148_572, 0).saturating_mul(p.into())) + // Standard Error: 1_373 + .saturating_add(Weight::from_parts(96_944, 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/koi/src/weights/pallet_conviction_voting.rs b/runtime/koi/src/weights/pallet_conviction_voting.rs index 13d261df7..922471538 100644 --- a/runtime/koi/src/weights/pallet_conviction_voting.rs +++ b/runtime/koi/src/weights/pallet_conviction_voting.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_conviction_voting` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -71,8 +71,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `13458` // Estimated: `42428` - // Minimum execution time: 87_000_000 picoseconds. - Weight::from_parts(113_000_000, 0) + // Minimum execution time: 92_000_000 picoseconds. + Weight::from_parts(112_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) @@ -93,8 +93,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `14179` // Estimated: `83866` - // Minimum execution time: 146_000_000 picoseconds. - Weight::from_parts(188_000_000, 0) + // Minimum execution time: 155_000_000 picoseconds. + Weight::from_parts(170_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) @@ -109,8 +109,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `13928` // Estimated: `83866` - // Minimum execution time: 121_000_000 picoseconds. - Weight::from_parts(158_000_000, 0) + // Minimum execution time: 129_000_000 picoseconds. + Weight::from_parts(142_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -123,8 +123,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `13052` // Estimated: `30694` - // Minimum execution time: 52_000_000 picoseconds. - Weight::from_parts(64_000_000, 0) + // Minimum execution time: 48_000_000 picoseconds. + Weight::from_parts(54_000_000, 0) .saturating_add(Weight::from_parts(0, 30694)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -146,11 +146,11 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `7020 + r * (447 ±0)` // Estimated: `83866 + r * (3387 ±0)` - // Minimum execution time: 48_000_000 picoseconds. - Weight::from_parts(59_839_879, 0) + // Minimum execution time: 57_000_000 picoseconds. + Weight::from_parts(58_165_928, 0) .saturating_add(Weight::from_parts(0, 83866)) - // Standard Error: 548_629 - .saturating_add(Weight::from_parts(64_288_976, 0).saturating_mul(r.into())) + // Standard Error: 503_137 + .saturating_add(Weight::from_parts(59_982_755, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(6)) @@ -168,11 +168,11 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `6876 + r * (447 ±0)` // Estimated: `83866 + r * (3387 ±0)` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(23_875_694, 0) + // Minimum execution time: 28_000_000 picoseconds. + Weight::from_parts(20_460_591, 0) .saturating_add(Weight::from_parts(0, 83866)) - // Standard Error: 559_658 - .saturating_add(Weight::from_parts(64_386_355, 0).saturating_mul(r.into())) + // Standard Error: 501_829 + .saturating_add(Weight::from_parts(59_934_115, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -191,8 +191,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `12038` // Estimated: `30694` - // Minimum execution time: 69_000_000 picoseconds. - Weight::from_parts(97_000_000, 0) + // Minimum execution time: 81_000_000 picoseconds. + Weight::from_parts(90_000_000, 0) .saturating_add(Weight::from_parts(0, 30694)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/koi/src/weights/pallet_identity.rs b/runtime/koi/src/weights/pallet_identity.rs index 4fb13f2c4..c852ad93f 100644 --- a/runtime/koi/src/weights/pallet_identity.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -62,11 +62,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31 + r * (45 ±0)` // Estimated: `2386` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(10_400_216, 0) + // Minimum execution time: 10_000_000 picoseconds. + Weight::from_parts(10_836_414, 0) .saturating_add(Weight::from_parts(0, 2386)) - // Standard Error: 7_194 - .saturating_add(Weight::from_parts(130_649, 0).saturating_mul(r.into())) + // Standard Error: 3_187 + .saturating_add(Weight::from_parts(47_855, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -74,17 +74,15 @@ impl pallet_identity::WeightInfo for WeightInfo { /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7526), added: 10001, mode: `MaxEncodedLen`) /// The range of component `r` is `[1, 20]`. /// The range of component `x` is `[0, 100]`. - fn set_identity(r: u32, x: u32, ) -> Weight { + fn set_identity(_r: u32, x: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `429 + r * (5 ±0)` // Estimated: `10991` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(27_053_072, 0) + // Minimum execution time: 28_000_000 picoseconds. + Weight::from_parts(29_229_318, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 18_449 - .saturating_add(Weight::from_parts(169_991, 0).saturating_mul(r.into())) - // Standard Error: 3_599 - .saturating_add(Weight::from_parts(606_987, 0).saturating_mul(x.into())) + // Standard Error: 963 + .saturating_add(Weight::from_parts(485_300, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -100,10 +98,10 @@ impl pallet_identity::WeightInfo for WeightInfo { // Measured: `88` // Estimated: `10991 + s * (2565 ±0)` // Minimum execution time: 7_000_000 picoseconds. - Weight::from_parts(20_720_703, 0) + Weight::from_parts(22_136_623, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 13_241 - .saturating_add(Weight::from_parts(3_320_543, 0).saturating_mul(s.into())) + // Standard Error: 4_633 + .saturating_add(Weight::from_parts(3_108_549, 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)) @@ -122,10 +120,10 @@ impl pallet_identity::WeightInfo for WeightInfo { // Measured: `168 + p * (20 ±0)` // Estimated: `10991` // Minimum execution time: 7_000_000 picoseconds. - Weight::from_parts(20_044_141, 0) + Weight::from_parts(22_502_751, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 7_782 - .saturating_add(Weight::from_parts(1_389_254, 0).saturating_mul(p.into())) + // Standard Error: 4_370 + .saturating_add(Weight::from_parts(1_264_160, 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()))) @@ -143,15 +141,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444 + r * (5 ±0) + s * (20 ±0) + x * (66 ±0)` // Estimated: `10991` - // Minimum execution time: 58_000_000 picoseconds. - Weight::from_parts(22_821_281, 0) + // Minimum execution time: 54_000_000 picoseconds. + Weight::from_parts(21_790_050, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 25_555 - .saturating_add(Weight::from_parts(374_809, 0).saturating_mul(r.into())) - // Standard Error: 4_990 - .saturating_add(Weight::from_parts(1_384_782, 0).saturating_mul(s.into())) - // Standard Error: 4_990 - .saturating_add(Weight::from_parts(347_343, 0).saturating_mul(x.into())) + // Standard Error: 18_026 + .saturating_add(Weight::from_parts(229_651, 0).saturating_mul(r.into())) + // Standard Error: 3_520 + .saturating_add(Weight::from_parts(1_274_887, 0).saturating_mul(s.into())) + // Standard Error: 3_520 + .saturating_add(Weight::from_parts(296_724, 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()))) @@ -166,13 +164,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `354 + r * (45 ±0) + x * (66 ±0)` // Estimated: `10991` - // Minimum execution time: 27_000_000 picoseconds. - Weight::from_parts(27_126_310, 0) + // Minimum execution time: 29_000_000 picoseconds. + Weight::from_parts(28_031_393, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 21_018 - .saturating_add(Weight::from_parts(152_719, 0).saturating_mul(r.into())) - // Standard Error: 4_101 - .saturating_add(Weight::from_parts(615_320, 0).saturating_mul(x.into())) + // Standard Error: 4_475 + .saturating_add(Weight::from_parts(39_810, 0).saturating_mul(r.into())) + // Standard Error: 873 + .saturating_add(Weight::from_parts(503_919, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -180,17 +178,15 @@ impl pallet_identity::WeightInfo for WeightInfo { /// Proof: `Identity::IdentityOf` (`max_values`: None, `max_size`: Some(7526), added: 10001, mode: `MaxEncodedLen`) /// The range of component `r` is `[1, 20]`. /// The range of component `x` is `[0, 100]`. - fn cancel_request(r: u32, x: u32, ) -> Weight { + fn cancel_request(_r: u32, x: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `385 + x * (66 ±0)` // Estimated: `10991` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(24_840_627, 0) + // Minimum execution time: 26_000_000 picoseconds. + Weight::from_parts(27_090_689, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 19_264 - .saturating_add(Weight::from_parts(125_405, 0).saturating_mul(r.into())) - // Standard Error: 3_758 - .saturating_add(Weight::from_parts(611_784, 0).saturating_mul(x.into())) + // Standard Error: 821 + .saturating_add(Weight::from_parts(496_195, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -202,10 +198,10 @@ impl pallet_identity::WeightInfo for WeightInfo { // Measured: `76 + r * (45 ±0)` // Estimated: `2386` // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(6_982_006, 0) + Weight::from_parts(6_869_532, 0) .saturating_add(Weight::from_parts(0, 2386)) - // Standard Error: 5_716 - .saturating_add(Weight::from_parts(60_923, 0).saturating_mul(r.into())) + // Standard Error: 3_212 + .saturating_add(Weight::from_parts(40_805, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -217,10 +213,10 @@ impl pallet_identity::WeightInfo for WeightInfo { // Measured: `76 + r * (45 ±0)` // Estimated: `2386` // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(6_210_525, 0) + Weight::from_parts(6_154_445, 0) .saturating_add(Weight::from_parts(0, 2386)) - // Standard Error: 4_853 - .saturating_add(Weight::from_parts(73_474, 0).saturating_mul(r.into())) + // Standard Error: 2_946 + .saturating_add(Weight::from_parts(57_306, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -231,11 +227,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76 + r * (45 ±0)` // Estimated: `2386` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(6_043_072, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(6_259_953, 0) .saturating_add(Weight::from_parts(0, 2386)) - // Standard Error: 4_829 - .saturating_add(Weight::from_parts(86_021, 0).saturating_mul(r.into())) + // Standard Error: 3_472 + .saturating_add(Weight::from_parts(43_072, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -249,13 +245,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420 + r * (45 ±0) + x * (66 ±0)` // Estimated: `10991` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(18_667_020, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(16_389_688, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 21_641 - .saturating_add(Weight::from_parts(50_412, 0).saturating_mul(r.into())) - // Standard Error: 4_004 - .saturating_add(Weight::from_parts(942_055, 0).saturating_mul(x.into())) + // Standard Error: 6_622 + .saturating_add(Weight::from_parts(69_080, 0).saturating_mul(r.into())) + // Standard Error: 1_225 + .saturating_add(Weight::from_parts(802_825, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -274,15 +270,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `742 + r * (11 ±0) + s * (20 ±0) + x * (66 ±0)` // Estimated: `10991` - // Minimum execution time: 70_000_000 picoseconds. - Weight::from_parts(45_323_718, 0) + // Minimum execution time: 71_000_000 picoseconds. + Weight::from_parts(45_670_093, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 28_485 - .saturating_add(Weight::from_parts(218_741, 0).saturating_mul(r.into())) - // Standard Error: 5_562 - .saturating_add(Weight::from_parts(1_404_268, 0).saturating_mul(s.into())) - // Standard Error: 5_562 - .saturating_add(Weight::from_parts(356_895, 0).saturating_mul(x.into())) + // Standard Error: 13_670 + .saturating_add(Weight::from_parts(169_624, 0).saturating_mul(r.into())) + // Standard Error: 2_669 + .saturating_add(Weight::from_parts(1_259_231, 0).saturating_mul(s.into())) + // Standard Error: 2_669 + .saturating_add(Weight::from_parts(265_371, 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()))) @@ -298,11 +294,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `535 + s * (23 ±0)` // Estimated: `10991` - // Minimum execution time: 24_000_000 picoseconds. - Weight::from_parts(30_612_713, 0) + // Minimum execution time: 27_000_000 picoseconds. + Weight::from_parts(30_282_830, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 3_522 - .saturating_add(Weight::from_parts(26_668, 0).saturating_mul(s.into())) + // Standard Error: 1_077 + .saturating_add(Weight::from_parts(4_756, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -315,11 +311,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `614 + s * (4 ±0)` // Estimated: `10991` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(12_071_167, 0) + // Minimum execution time: 10_000_000 picoseconds. + Weight::from_parts(11_569_787, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 1_676 - .saturating_add(Weight::from_parts(19_608, 0).saturating_mul(s.into())) + // Standard Error: 606 + .saturating_add(Weight::from_parts(9_680, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -334,11 +330,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `646 + s * (24 ±0)` // Estimated: `10991` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(32_104_923, 0) + // Minimum execution time: 29_000_000 picoseconds. + Weight::from_parts(31_095_541, 0) .saturating_add(Weight::from_parts(0, 10991)) - // Standard Error: 3_761 - .saturating_add(Weight::from_parts(30_529, 0).saturating_mul(s.into())) + // Standard Error: 977 + .saturating_add(Weight::from_parts(14_603, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -353,11 +349,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `658 + s * (24 ±0)` // Estimated: `5511` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(21_848_422, 0) + // Minimum execution time: 20_000_000 picoseconds. + Weight::from_parts(21_511_500, 0) .saturating_add(Weight::from_parts(0, 5511)) - // Standard Error: 2_838 - .saturating_add(Weight::from_parts(37_486, 0).saturating_mul(s.into())) + // Standard Error: 881 + .saturating_add(Weight::from_parts(10_414, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/koi/src/weights/pallet_preimage.rs b/runtime/koi/src/weights/pallet_preimage.rs index b2b3c760b..b0a70b69e 100644 --- a/runtime/koi/src/weights/pallet_preimage.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -64,11 +64,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `208` // Estimated: `3544` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(27_000_000, 0) + // Minimum execution time: 30_000_000 picoseconds. + Weight::from_parts(30_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_269, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_048, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -81,11 +81,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3544` - // Minimum execution time: 13_000_000 picoseconds. + // Minimum execution time: 14_000_000 picoseconds. Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_266, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(1_056, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -98,11 +98,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3544` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(14_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(10_563_587, 0) .saturating_add(Weight::from_parts(0, 3544)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_273, 0).saturating_mul(s.into())) + // Standard Error: 3 + .saturating_add(Weight::from_parts(1_041, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -114,8 +114,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `342` // Estimated: `3544` - // Minimum execution time: 36_000_000 picoseconds. - Weight::from_parts(43_000_000, 0) + // Minimum execution time: 31_000_000 picoseconds. + Weight::from_parts(34_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -128,8 +128,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3544` - // Minimum execution time: 20_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 16_000_000 picoseconds. + Weight::from_parts(17_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -140,8 +140,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `176` // Estimated: `3544` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(22_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(19_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -152,8 +152,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3544` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) + // Minimum execution time: 8_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -164,8 +164,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3544` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(16_000_000, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -176,8 +176,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3544` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 7_000_000 picoseconds. + Weight::from_parts(8_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -190,8 +190,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3544` - // Minimum execution time: 14_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 15_000_000 picoseconds. + Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -202,8 +202,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3544` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 7_000_000 picoseconds. + Weight::from_parts(8_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -214,8 +214,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3544` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 7_000_000 picoseconds. + Weight::from_parts(9_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/koi/src/weights/pallet_proxy.rs b/runtime/koi/src/weights/pallet_proxy.rs index f329f26e3..26182424e 100644 --- a/runtime/koi/src/weights/pallet_proxy.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -62,13 +62,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn proxy(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `153 + p * (25 ±0)` + // Measured: `119 + p * (25 ±0)` // Estimated: `4310` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(14_979_379, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(15_100_010, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 6_588 - .saturating_add(Weight::from_parts(70_143, 0).saturating_mul(p.into())) + // Standard Error: 2_008 + .saturating_add(Weight::from_parts(34_277, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) } /// Storage: `Proxy::Proxies` (r:1 w:0) @@ -81,17 +81,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// Proof: `TxPause::PausedCalls` (`max_values`: None, `max_size`: Some(532), added: 3007, mode: `MaxEncodedLen`) /// The range of component `a` is `[0, 31]`. /// The range of component `p` is `[1, 31]`. - fn proxy_announced(a: u32, p: u32, ) -> Weight { + fn proxy_announced(a: u32, _p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `405 + a * (56 ±0) + p * (25 ±0)` + // Measured: `371 + a * (56 ±0) + p * (25 ±0)` // Estimated: `5302` - // Minimum execution time: 30_000_000 picoseconds. - Weight::from_parts(36_419_076, 0) + // Minimum execution time: 34_000_000 picoseconds. + Weight::from_parts(36_388_524, 0) .saturating_add(Weight::from_parts(0, 5302)) - // Standard Error: 8_290 - .saturating_add(Weight::from_parts(155_245, 0).saturating_mul(a.into())) - // Standard Error: 8_565 - .saturating_add(Weight::from_parts(31_673, 0).saturating_mul(p.into())) + // Standard Error: 3_832 + .saturating_add(Weight::from_parts(116_626, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -101,17 +99,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) /// The range of component `a` is `[0, 31]`. /// The range of component `p` is `[1, 31]`. - fn remove_announcement(a: u32, p: u32, ) -> Weight { + fn remove_announcement(a: u32, _p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `329 + a * (56 ±0)` + // Measured: `295 + a * (56 ±0)` // Estimated: `5302` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(21_450_803, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(21_965_802, 0) .saturating_add(Weight::from_parts(0, 5302)) - // Standard Error: 6_463 - .saturating_add(Weight::from_parts(154_180, 0).saturating_mul(a.into())) - // Standard Error: 6_678 - .saturating_add(Weight::from_parts(8_147, 0).saturating_mul(p.into())) + // Standard Error: 2_130 + .saturating_add(Weight::from_parts(116_871, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -121,17 +117,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) /// The range of component `a` is `[0, 31]`. /// The range of component `p` is `[1, 31]`. - fn reject_announcement(a: u32, p: u32, ) -> Weight { + fn reject_announcement(a: u32, _p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `329 + a * (56 ±0)` + // Measured: `295 + a * (56 ±0)` // Estimated: `5302` - // Minimum execution time: 17_000_000 picoseconds. - Weight::from_parts(20_314_425, 0) + // Minimum execution time: 20_000_000 picoseconds. + Weight::from_parts(22_207_671, 0) .saturating_add(Weight::from_parts(0, 5302)) - // Standard Error: 6_157 - .saturating_add(Weight::from_parts(192_007, 0).saturating_mul(a.into())) - // Standard Error: 6_362 - .saturating_add(Weight::from_parts(16_315, 0).saturating_mul(p.into())) + // Standard Error: 1_998 + .saturating_add(Weight::from_parts(106_808, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -145,15 +139,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn announce(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `345 + a * (56 ±0) + p * (25 ±0)` + // Measured: `311 + a * (56 ±0) + p * (25 ±0)` // Estimated: `5302` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(30_119_688, 0) + // Minimum execution time: 29_000_000 picoseconds. + Weight::from_parts(29_791_242, 0) .saturating_add(Weight::from_parts(0, 5302)) - // Standard Error: 7_890 - .saturating_add(Weight::from_parts(150_115, 0).saturating_mul(a.into())) - // Standard Error: 8_152 - .saturating_add(Weight::from_parts(11_872, 0).saturating_mul(p.into())) + // Standard Error: 2_196 + .saturating_add(Weight::from_parts(134_102, 0).saturating_mul(a.into())) + // Standard Error: 2_269 + .saturating_add(Weight::from_parts(16_253, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -162,13 +156,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn add_proxy(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `149 + p * (25 ±0)` + // Measured: `115 + p * (25 ±0)` // Estimated: `4310` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(22_715_391, 0) + // Minimum execution time: 23_000_000 picoseconds. + Weight::from_parts(24_145_582, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 9_412 - .saturating_add(Weight::from_parts(61_379, 0).saturating_mul(p.into())) + // Standard Error: 2_363 + .saturating_add(Weight::from_parts(26_315, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -177,13 +171,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn remove_proxy(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `149 + p * (25 ±0)` + // Measured: `115 + p * (25 ±0)` // Estimated: `4310` - // Minimum execution time: 20_000_000 picoseconds. - Weight::from_parts(22_998_156, 0) + // Minimum execution time: 23_000_000 picoseconds. + Weight::from_parts(24_438_307, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 8_194 - .saturating_add(Weight::from_parts(73_443, 0).saturating_mul(p.into())) + // Standard Error: 2_791 + .saturating_add(Weight::from_parts(19_438, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -192,28 +186,26 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn remove_proxies(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `149 + p * (25 ±0)` + // Measured: `115 + p * (25 ±0)` // Estimated: `4310` - // Minimum execution time: 17_000_000 picoseconds. - Weight::from_parts(20_655_882, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(21_980_707, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 9_641 - .saturating_add(Weight::from_parts(31_966, 0).saturating_mul(p.into())) + // Standard Error: 894 + .saturating_add(Weight::from_parts(2_531, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Proxy::Proxies` (r:1 w:1) /// Proof: `Proxy::Proxies` (`max_values`: None, `max_size`: Some(845), added: 3320, mode: `MaxEncodedLen`) /// The range of component `p` is `[1, 31]`. - fn create_pure(p: u32, ) -> Weight { + fn create_pure(_p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `161` + // Measured: `127` // Estimated: `4310` - // Minimum execution time: 21_000_000 picoseconds. - Weight::from_parts(23_988_470, 0) + // Minimum execution time: 25_000_000 picoseconds. + Weight::from_parts(26_128_111, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 10_617 - .saturating_add(Weight::from_parts(24_454, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -222,13 +214,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 30]`. fn kill_pure(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `174 + p * (25 ±0)` + // Measured: `140 + p * (25 ±0)` // Estimated: `4310` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(21_214_866, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(22_216_563, 0) .saturating_add(Weight::from_parts(0, 4310)) - // Standard Error: 10_433 - .saturating_add(Weight::from_parts(38_507, 0).saturating_mul(p.into())) + // Standard Error: 2_376 + .saturating_add(Weight::from_parts(21_861, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/koi/src/weights/pallet_referenda.rs b/runtime/koi/src/weights/pallet_referenda.rs index 37d2df506..0b74c6047 100644 --- a/runtime/koi/src/weights/pallet_referenda.rs +++ b/runtime/koi/src/weights/pallet_referenda.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_referenda` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -65,7 +65,7 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `275` // Estimated: `42428` - // Minimum execution time: 33_000_000 picoseconds. + // Minimum execution time: 37_000_000 picoseconds. Weight::from_parts(38_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) @@ -79,8 +79,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `516` // Estimated: `83866` - // Minimum execution time: 39_000_000 picoseconds. - Weight::from_parts(40_000_000, 0) + // Minimum execution time: 46_000_000 picoseconds. + Weight::from_parts(47_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -97,8 +97,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3350` // Estimated: `42428` - // Minimum execution time: 54_000_000 picoseconds. - Weight::from_parts(63_000_000, 0) + // Minimum execution time: 53_000_000 picoseconds. + Weight::from_parts(56_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -115,8 +115,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3370` // Estimated: `42428` - // Minimum execution time: 56_000_000 picoseconds. - Weight::from_parts(62_000_000, 0) + // Minimum execution time: 52_000_000 picoseconds. + Weight::from_parts(55_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -131,8 +131,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `516` // Estimated: `83866` - // Minimum execution time: 53_000_000 picoseconds. - Weight::from_parts(60_000_000, 0) + // Minimum execution time: 56_000_000 picoseconds. + Weight::from_parts(58_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -145,8 +145,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `461` // Estimated: `4377` - // Minimum execution time: 30_000_000 picoseconds. - Weight::from_parts(31_000_000, 0) + // Minimum execution time: 36_000_000 picoseconds. + Weight::from_parts(37_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -157,8 +157,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `425` // Estimated: `4377` - // Minimum execution time: 26_000_000 picoseconds. - Weight::from_parts(32_000_000, 0) + // Minimum execution time: 29_000_000 picoseconds. + Weight::from_parts(30_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -169,8 +169,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `384` // Estimated: `4377` - // Minimum execution time: 26_000_000 picoseconds. - Weight::from_parts(31_000_000, 0) + // Minimum execution time: 28_000_000 picoseconds. + Weight::from_parts(29_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -183,8 +183,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `83866` - // Minimum execution time: 29_000_000 picoseconds. - Weight::from_parts(31_000_000, 0) + // Minimum execution time: 33_000_000 picoseconds. + Weight::from_parts(34_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -201,8 +201,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `880` // Estimated: `83866` - // Minimum execution time: 99_000_000 picoseconds. - Weight::from_parts(110_000_000, 0) + // Minimum execution time: 105_000_000 picoseconds. + Weight::from_parts(108_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) @@ -231,8 +231,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3165` // Estimated: `42428` - // Minimum execution time: 29_000_000 picoseconds. - Weight::from_parts(38_000_000, 0) + // Minimum execution time: 32_000_000 picoseconds. + Weight::from_parts(34_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -247,8 +247,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3223` // Estimated: `42428` - // Minimum execution time: 35_000_000 picoseconds. - Weight::from_parts(46_000_000, 0) + // Minimum execution time: 40_000_000 picoseconds. + Weight::from_parts(42_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -261,8 +261,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3020` // Estimated: `5477` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(17_000_000, 0) + // Minimum execution time: 13_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 5477)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -276,7 +276,7 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Measured: `3020` // Estimated: `5477` // Minimum execution time: 14_000_000 picoseconds. - Weight::from_parts(18_000_000, 0) + Weight::from_parts(15_000_000, 0) .saturating_add(Weight::from_parts(0, 5477)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -292,7 +292,7 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Measured: `3024` // Estimated: `5477` // Minimum execution time: 17_000_000 picoseconds. - Weight::from_parts(20_000_000, 0) + Weight::from_parts(17_000_000, 0) .saturating_add(Weight::from_parts(0, 5477)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -308,7 +308,7 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Measured: `3044` // Estimated: `5477` // Minimum execution time: 17_000_000 picoseconds. - Weight::from_parts(21_000_000, 0) + Weight::from_parts(17_000_000, 0) .saturating_add(Weight::from_parts(0, 5477)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -321,8 +321,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `354` // Estimated: `42428` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(22_000_000, 0) + // Minimum execution time: 20_000_000 picoseconds. + Weight::from_parts(21_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -335,8 +335,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `42428` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 20_000_000 picoseconds. + Weight::from_parts(21_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -347,8 +347,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `299` // Estimated: `4377` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(15_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -363,8 +363,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `42428` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(24_000_000, 0) + // Minimum execution time: 27_000_000 picoseconds. + Weight::from_parts(28_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -379,8 +379,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `42428` - // Minimum execution time: 28_000_000 picoseconds. - Weight::from_parts(33_000_000, 0) + // Minimum execution time: 31_000_000 picoseconds. + Weight::from_parts(31_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -393,8 +393,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `443` // Estimated: `42428` - // Minimum execution time: 20_000_000 picoseconds. - Weight::from_parts(21_000_000, 0) + // Minimum execution time: 24_000_000 picoseconds. + Weight::from_parts(25_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -407,8 +407,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `426` // Estimated: `42428` - // Minimum execution time: 21_000_000 picoseconds. - Weight::from_parts(24_000_000, 0) + // Minimum execution time: 25_000_000 picoseconds. + Weight::from_parts(25_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -421,8 +421,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `443` // Estimated: `42428` - // Minimum execution time: 20_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(22_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -435,8 +435,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `447` // Estimated: `42428` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 21_000_000 picoseconds. + Weight::from_parts(22_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -451,8 +451,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `447` // Estimated: `83866` - // Minimum execution time: 33_000_000 picoseconds. - Weight::from_parts(39_000_000, 0) + // Minimum execution time: 36_000_000 picoseconds. + Weight::from_parts(36_000_000, 0) .saturating_add(Weight::from_parts(0, 83866)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -465,8 +465,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `443` // Estimated: `42428` - // Minimum execution time: 22_000_000 picoseconds. - Weight::from_parts(25_000_000, 0) + // Minimum execution time: 25_000_000 picoseconds. + Weight::from_parts(26_000_000, 0) .saturating_add(Weight::from_parts(0, 42428)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -481,8 +481,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `443` // Estimated: `4377` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(18_000_000, 0) + // Minimum execution time: 17_000_000 picoseconds. + Weight::from_parts(17_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -495,8 +495,8 @@ impl pallet_referenda::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `376` // Estimated: `4377` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(14_000_000, 0) + // Minimum execution time: 15_000_000 picoseconds. + Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 4377)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/koi/src/weights/pallet_scheduler.rs b/runtime/koi/src/weights/pallet_scheduler.rs index 182d7d6a3..cdbf350a3 100644 --- a/runtime/koi/src/weights/pallet_scheduler.rs +++ b/runtime/koi/src/weights/pallet_scheduler.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_scheduler` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,7 +61,7 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31` // Estimated: `1489` - // Minimum execution time: 2_000_000 picoseconds. + // Minimum execution time: 4_000_000 picoseconds. Weight::from_parts(4_000_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) @@ -74,11 +74,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `78 + s * (177 ±0)` // Estimated: `42428` - // Minimum execution time: 2_000_000 picoseconds. - Weight::from_parts(5_092_034, 0) + // Minimum execution time: 3_000_000 picoseconds. + Weight::from_parts(5_519_778, 0) .saturating_add(Weight::from_parts(0, 42428)) - // Standard Error: 4_934 - .saturating_add(Weight::from_parts(715_496, 0).saturating_mul(s.into())) + // Standard Error: 1_451 + .saturating_add(Weight::from_parts(654_332, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -99,11 +99,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(17_000_000, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(18_000_000, 0) .saturating_add(Weight::from_parts(0, 3644)) // Standard Error: 3 - .saturating_add(Weight::from_parts(635, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(500, 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())) @@ -114,8 +114,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(7_000_000, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(6_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -133,7 +133,7 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 4_000_000 picoseconds. + // Minimum execution time: 5_000_000 picoseconds. Weight::from_parts(6_000_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) @@ -153,11 +153,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `78 + s * (177 ±0)` // Estimated: `42428` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(13_491_294, 0) + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(13_308_000, 0) .saturating_add(Weight::from_parts(0, 42428)) - // Standard Error: 5_977 - .saturating_add(Weight::from_parts(706_069, 0).saturating_mul(s.into())) + // Standard Error: 1_455 + .saturating_add(Weight::from_parts(635_428, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -170,11 +170,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `78 + s * (177 ±0)` // Estimated: `42428` - // Minimum execution time: 14_000_000 picoseconds. - Weight::from_parts(13_603_102, 0) + // Minimum execution time: 15_000_000 picoseconds. + Weight::from_parts(13_697_877, 0) .saturating_add(Weight::from_parts(0, 42428)) - // Standard Error: 6_683 - .saturating_add(Weight::from_parts(1_249_133, 0).saturating_mul(s.into())) + // Standard Error: 1_565 + .saturating_add(Weight::from_parts(1_162_593, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -187,11 +187,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `255 + s * (185 ±0)` // Estimated: `42428` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(16_459_294, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(16_838_588, 0) .saturating_add(Weight::from_parts(0, 42428)) - // Standard Error: 7_190 - .saturating_add(Weight::from_parts(726_069, 0).saturating_mul(s.into())) + // Standard Error: 2_420 + .saturating_add(Weight::from_parts(653_363, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -204,11 +204,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `281 + s * (185 ±0)` // Estimated: `42428` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(15_818_122, 0) + // Minimum execution time: 16_000_000 picoseconds. + Weight::from_parts(15_553_877, 0) .saturating_add(Weight::from_parts(0, 42428)) - // Standard Error: 10_166 - .saturating_add(Weight::from_parts(1_245_877, 0).saturating_mul(s.into())) + // Standard Error: 2_296 + .saturating_add(Weight::from_parts(1_185_416, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/koi/src/weights/pallet_session.rs b/runtime/koi/src/weights/pallet_session.rs index a1ab2eb9b..a798ba20a 100644 --- a/runtime/koi/src/weights/pallet_session.rs +++ b/runtime/koi/src/weights/pallet_session.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_session` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -63,8 +63,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `246` // Estimated: `3711` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(15_000_000, 0) + // Minimum execution time: 14_000_000 picoseconds. + Weight::from_parts(14_000_000, 0) .saturating_add(Weight::from_parts(0, 3711)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -77,8 +77,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `228` // Estimated: `3693` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(11_000_000, 0) + // Minimum execution time: 10_000_000 picoseconds. + Weight::from_parts(10_000_000, 0) .saturating_add(Weight::from_parts(0, 3693)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/koi/src/weights/pallet_timestamp.rs b/runtime/koi/src/weights/pallet_timestamp.rs index cf577ddd4..b0134a58c 100644 --- a/runtime/koi/src/weights/pallet_timestamp.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,8 +61,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6` // Estimated: `1493` - // Minimum execution time: 4_000_000 picoseconds. - Weight::from_parts(5_000_000, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(6_000_000, 0) .saturating_add(Weight::from_parts(0, 1493)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -71,8 +71,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `57` // Estimated: `0` - // Minimum execution time: 2_000_000 picoseconds. - Weight::from_parts(3_000_000, 0) + // Minimum execution time: 3_000_000 picoseconds. + Weight::from_parts(4_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/koi/src/weights/pallet_treasury.rs b/runtime/koi/src/weights/pallet_treasury.rs index c0ba1f4d2..6e557251e 100644 --- a/runtime/koi/src/weights/pallet_treasury.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -65,8 +65,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `109` // Estimated: `1887` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(14_000_000, 0) + // Minimum execution time: 12_000_000 picoseconds. + Weight::from_parts(13_000_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -79,8 +79,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `275` // Estimated: `1489` - // Minimum execution time: 24_000_000 picoseconds. - Weight::from_parts(30_000_000, 0) + // Minimum execution time: 27_000_000 picoseconds. + Weight::from_parts(28_000_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -93,8 +93,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `571` // Estimated: `6172` - // Minimum execution time: 40_000_000 picoseconds. - Weight::from_parts(47_000_000, 0) + // Minimum execution time: 44_000_000 picoseconds. + Weight::from_parts(46_000_000, 0) .saturating_add(Weight::from_parts(0, 6172)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -108,11 +108,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `537 + p * (8 ±0)` // Estimated: `3549` - // Minimum execution time: 7_000_000 picoseconds. - Weight::from_parts(9_961_550, 0) + // Minimum execution time: 8_000_000 picoseconds. + Weight::from_parts(9_844_013, 0) .saturating_add(Weight::from_parts(0, 3549)) - // Standard Error: 1_786 - .saturating_add(Weight::from_parts(43_175, 0).saturating_mul(p.into())) + // Standard Error: 779 + .saturating_add(Weight::from_parts(18_073, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -122,7 +122,7 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `194` // Estimated: `1887` - // Minimum execution time: 6_000_000 picoseconds. + // Minimum execution time: 7_000_000 picoseconds. Weight::from_parts(7_000_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) @@ -143,11 +143,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `328 + p * (97 ±0)` // Estimated: `3581 + p * (2559 ±0)` - // Minimum execution time: 25_000_000 picoseconds. - Weight::from_parts(21_168_601, 0) + // Minimum execution time: 28_000_000 picoseconds. + Weight::from_parts(55_287_531, 0) .saturating_add(Weight::from_parts(0, 3581)) - // Standard Error: 14_180 - .saturating_add(Weight::from_parts(2_757_621, 0).saturating_mul(p.into())) + // Standard Error: 53_594 + .saturating_add(Weight::from_parts(2_450_736, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/koi/src/weights/pallet_tx_pause.rs b/runtime/koi/src/weights/pallet_tx_pause.rs index eff5ae66a..1da96acd4 100644 --- a/runtime/koi/src/weights/pallet_tx_pause.rs +++ b/runtime/koi/src/weights/pallet_tx_pause.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_tx_pause` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -61,7 +61,7 @@ impl pallet_tx_pause::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 11_000_000 picoseconds. + // Minimum execution time: 12_000_000 picoseconds. Weight::from_parts(12_000_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) @@ -73,8 +73,8 @@ impl pallet_tx_pause::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `566` // Estimated: `3997` - // Minimum execution time: 14_000_000 picoseconds. - Weight::from_parts(17_000_000, 0) + // Minimum execution time: 15_000_000 picoseconds. + Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/koi/src/weights/pallet_utility.rs b/runtime/koi/src/weights/pallet_utility.rs index 308742d08..1849faa6d 100644 --- a/runtime/koi/src/weights/pallet_utility.rs +++ b/runtime/koi/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-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -62,11 +62,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(9_481_025, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(5_550_723, 0) .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 7_475 - .saturating_add(Weight::from_parts(6_838_426, 0).saturating_mul(c.into())) + // Standard Error: 5_021 + .saturating_add(Weight::from_parts(6_822_392, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `TxPause::PausedCalls` (r:1 w:0) @@ -75,8 +75,8 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(6_000_000, 0) + // Minimum execution time: 7_000_000 picoseconds. + Weight::from_parts(8_000_000, 0) .saturating_add(Weight::from_parts(0, 3997)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -87,19 +87,19 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(11_894_354, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(17_953_962, 0) .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 9_274 - .saturating_add(Weight::from_parts(7_197_072, 0).saturating_mul(c.into())) + // Standard Error: 4_673 + .saturating_add(Weight::from_parts(7_089_393, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(7_000_000, 0) + // Minimum execution time: 8_000_000 picoseconds. + Weight::from_parts(9_000_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `TxPause::PausedCalls` (r:1 w:0) @@ -109,11 +109,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3997` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(9_627_003, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(9_536_222, 0) .saturating_add(Weight::from_parts(0, 3997)) - // Standard Error: 6_909 - .saturating_add(Weight::from_parts(6_809_262, 0).saturating_mul(c.into())) + // Standard Error: 4_291 + .saturating_add(Weight::from_parts(6_809_869, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } } diff --git a/runtime/koi/src/weights/pallet_whitelist.rs b/runtime/koi/src/weights/pallet_whitelist.rs index a1a6e0ab9..cee262ac7 100644 --- a/runtime/koi/src/weights/pallet_whitelist.rs +++ b/runtime/koi/src/weights/pallet_whitelist.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for `pallet_whitelist` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-04-17, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("koi-dev")`, DB CACHE: 1024 @@ -63,8 +63,8 @@ impl pallet_whitelist::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `48` // Estimated: `3544` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(18_000_000, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(19_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -77,7 +77,7 @@ impl pallet_whitelist::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `176` // Estimated: `3544` - // Minimum execution time: 14_000_000 picoseconds. + // Minimum execution time: 15_000_000 picoseconds. Weight::from_parts(16_000_000, 0) .saturating_add(Weight::from_parts(0, 3544)) .saturating_add(T::DbWeight::get().reads(2)) @@ -94,11 +94,11 @@ impl pallet_whitelist::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `252 + n * (1 ±0)` // Estimated: `3716 + n * (1 ±0)` - // Minimum execution time: 24_000_000 picoseconds. - Weight::from_parts(27_000_000, 0) + // Minimum execution time: 27_000_000 picoseconds. + Weight::from_parts(15_102_813, 0) .saturating_add(Weight::from_parts(0, 3716)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(635, 0).saturating_mul(n.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(478, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -112,11 +112,11 @@ impl pallet_whitelist::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `176` // Estimated: `3544` - // Minimum execution time: 16_000_000 picoseconds. - Weight::from_parts(19_326_076, 0) + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(18_932_063, 0) .saturating_add(Weight::from_parts(0, 3544)) - // Standard Error: 26 - .saturating_add(Weight::from_parts(1_176, 0).saturating_mul(n.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(993, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/koi/tests/tests.rs b/runtime/koi/tests/tests.rs index 932c515be..92d6ac54e 100644 --- a/runtime/koi/tests/tests.rs +++ b/runtime/koi/tests/tests.rs @@ -21,5 +21,4 @@ pub mod mock; darwinia_common_runtime::impl_weight_tests! {} darwinia_common_runtime::impl_fee_tests! {} darwinia_common_runtime::impl_evm_tests! {} -darwinia_common_runtime::impl_account_migration_tests! {} darwinia_common_runtime::impl_maintenance_tests! {}