diff --git a/.github/workflows/try-runtime.yml b/.github/workflows/try-runtime.yml index 2ad044cf..c18a37dc 100644 --- a/.github/workflows/try-runtime.yml +++ b/.github/workflows/try-runtime.yml @@ -39,6 +39,6 @@ jobs: echo "---------- Running try-runtime for Trappist ----------" cargo build -p trappist --locked --release --no-default-features --features trappist/trappist-runtime,try-runtime && \ try-runtime --runtime ./target/release/wbuild/trappist-runtime/target/wasm32-unknown-unknown/release/trappist_runtime.wasm \ - on-runtime-upgrade live --uri wss://rococo-trappist-try-runtime-node.parity-chains.parity.io:443 + on-runtime-upgrade --checks pre-and-post --disable-idempotency-checks live --uri wss://rococo-trappist-try-runtime-node.parity-chains.parity.io:443 env: RUST_LOG: remote-ext=debug,runtime=debug diff --git a/node/src/chain_spec/trappist.rs b/node/src/chain_spec/trappist.rs index fa4564ce..d560dde4 100644 --- a/node/src/chain_spec/trappist.rs +++ b/node/src/chain_spec/trappist.rs @@ -214,6 +214,8 @@ pub fn testnet_genesis( }, treasury: Default::default(), lockdown_mode: LockdownModeConfig { initial_status: false, ..Default::default() }, + dex: Default::default(), + transaction_payment: Default::default(), } } @@ -329,5 +331,7 @@ fn trappist_live_genesis( }, treasury: Default::default(), lockdown_mode: Default::default(), + dex: Default::default(), + transaction_payment: Default::default(), } } diff --git a/pallets/withdraw-teleport/src/lib.rs b/pallets/withdraw-teleport/src/lib.rs index 804ece65..66c6b737 100644 --- a/pallets/withdraw-teleport/src/lib.rs +++ b/pallets/withdraw-teleport/src/lib.rs @@ -28,9 +28,8 @@ use frame_support::{ traits::{Contains, EnsureOrigin, Get}, }; use frame_system::pallet_prelude::OriginFor; -use log; pub use pallet::*; -use pallet_xcm::WeightInfo as XcmWeightInfo; +use pallet_xcm::WeightInfo as RuntimeXcmWeightInfo; use parity_scale_codec::Encode; use sp_std::{boxed::Box, vec}; pub use xcm::{ @@ -191,7 +190,7 @@ impl Pallet { // Reanchor the fee asset to the destination chain. let fee_asset_item: usize = 0; let fees = fee_asset - .get(fee_asset_item as usize) + .get(fee_asset_item) .ok_or(pallet_xcm::Error::::Empty)? .clone() .reanchored(&dest, context) diff --git a/primitives/xcm/src/lib.rs b/primitives/xcm/src/lib.rs index 4b93bc9d..99356531 100644 --- a/primitives/xcm/src/lib.rs +++ b/primitives/xcm/src/lib.rs @@ -25,7 +25,7 @@ use frame_support::{ use sp_runtime::traits::MaybeEquivalence; #[cfg(not(test))] use sp_runtime::DispatchResult; -use sp_std::{borrow::Borrow, marker::PhantomData}; +use sp_std::marker::PhantomData; use xcm::{ latest::{ AssetId::Concrete, Fungibility::Fungible, Junctions::Here, MultiAsset, MultiLocation, @@ -47,7 +47,7 @@ where AssetIdInfoGetter: AssetMultiLocationGetter, { fn convert(asset_multi_location: &MultiLocation) -> Option { - AssetIdInfoGetter::get_asset_id(asset_multi_location.borrow()) + AssetIdInfoGetter::get_asset_id(asset_multi_location) } fn convert_back(asset_id: &AssetId) -> Option { @@ -76,9 +76,9 @@ impl< (Fungible(ref amount), Concrete(ref id)) => (amount, id), _ => return Err(MatchError::AssetNotHandled), }; - let what = ConvertAssetId::convert(id).ok_or_else(|| MatchError::AssetNotHandled)?; + let what = ConvertAssetId::convert(id).ok_or(MatchError::AssetNotHandled)?; let amount = ConvertBalance::convert_back(amount) - .ok_or_else(|| MatchError::AmountToBalanceConversionFailed)?; + .ok_or(MatchError::AmountToBalanceConversionFailed)?; Ok((what, amount)) } } diff --git a/runtime/stout/src/contracts.rs b/runtime/stout/src/contracts.rs index 474ce9bb..1d2e58bb 100644 --- a/runtime/stout/src/contracts.rs +++ b/runtime/stout/src/contracts.rs @@ -23,8 +23,6 @@ use frame_support::{ parameter_types, traits::{ConstU32, Nothing}, }; -#[cfg(feature = "runtime-benchmarks")] -use pallet_contracts::NoopMigration; use pallet_contracts::{ weights::SubstrateWeight, Config, DebugInfo, DefaultAddressGenerator, Frame, Schedule, }; @@ -73,7 +71,7 @@ impl Config for Runtime { #[cfg(not(feature = "runtime-benchmarks"))] type Migrations = (); #[cfg(feature = "runtime-benchmarks")] - type Migrations = (NoopMigration<1>, NoopMigration<2>); + type Migrations = pallet_contracts::migration::codegen::BenchMigrations; type MaxDelegateDependencies = ConstU32<32>; type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent; type Debug = (); diff --git a/runtime/stout/src/lib.rs b/runtime/stout/src/lib.rs index 7dfa13d6..a9e13e78 100644 --- a/runtime/stout/src/lib.rs +++ b/runtime/stout/src/lib.rs @@ -136,7 +136,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("stout-rococo"), impl_name: create_runtime_str!("stout-rococo"), authoring_version: 1, - spec_version: 10000, + spec_version: 11000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, diff --git a/runtime/trappist/src/contracts.rs b/runtime/trappist/src/contracts.rs index 8cd4a0c8..03c56c04 100644 --- a/runtime/trappist/src/contracts.rs +++ b/runtime/trappist/src/contracts.rs @@ -23,12 +23,7 @@ use frame_support::{ parameter_types, traits::{ConstBool, ConstU32, Nothing}, }; -#[cfg(feature = "runtime-benchmarks")] -use pallet_contracts::NoopMigration; -use pallet_contracts::{ - migration::{v13, v14, v15}, - Config, DebugInfo, DefaultAddressGenerator, Frame, Schedule, -}; +use pallet_contracts::{Config, DebugInfo, DefaultAddressGenerator, Frame, Schedule}; pub use parachains_common::AVERAGE_ON_INITIALIZE_RATIO; use sp_runtime::Perbill; @@ -71,9 +66,13 @@ impl Config for Runtime { type UnsafeUnstableInterface = ConstBool; type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; #[cfg(not(feature = "runtime-benchmarks"))] - type Migrations = (v13::Migration, v14::Migration, v15::Migration); + type Migrations = ( + pallet_contracts::migration::v13::Migration, + pallet_contracts::migration::v14::Migration, + pallet_contracts::migration::v15::Migration, + ); #[cfg(feature = "runtime-benchmarks")] - type Migrations = (NoopMigration<1>, NoopMigration<2>); + type Migrations = pallet_contracts::migration::codegen::BenchMigrations; type MaxDelegateDependencies = ConstU32<32>; type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent; type Debug = (); diff --git a/runtime/trappist/src/lib.rs b/runtime/trappist/src/lib.rs index 026656c5..6fef3a94 100644 --- a/runtime/trappist/src/lib.rs +++ b/runtime/trappist/src/lib.rs @@ -125,7 +125,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (migrations::SetStorageVersions, pallet_contracts::Migration), + pallet_contracts::Migration, >; impl_opaque_keys! { @@ -139,7 +139,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("trappist-rococo"), impl_name: create_runtime_str!("trappist-rococo"), authoring_version: 1, - spec_version: 10100, + spec_version: 11000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, @@ -230,7 +230,7 @@ impl pallet_balances::Config for Runtime { type FreezeIdentifier = (); type MaxLocks = ConstU32<50>; type MaxReserves = ConstU32<50>; - type MaxHolds = ConstU32<0>; + type MaxHolds = ConstU32<1>; type MaxFreezes = ConstU32<0>; } @@ -667,31 +667,29 @@ impl pallet_lockdown_mode::Config for Runtime { construct_runtime!( pub struct Runtime { // System support stuff. - System: frame_system::{Pallet, Call, Config, Storage, Event} = 0, - ParachainSystem: cumulus_pallet_parachain_system::{ - Pallet, Call, Config, Storage, Inherent, Event, ValidateUnsigned, - } = 1, - RandomnessCollectiveFlip: pallet_insecure_randomness_collective_flip::{Pallet, Storage} = 2, - Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 3, - ParachainInfo: parachain_info::{Pallet, Storage, Config} = 4, + System: frame_system = 0, + ParachainSystem: cumulus_pallet_parachain_system = 1, + RandomnessCollectiveFlip: pallet_insecure_randomness_collective_flip = 2, + Timestamp: pallet_timestamp = 3, + ParachainInfo: parachain_info = 4, // Monetary stuff. - Balances: pallet_balances::{Pallet, Call, Storage, Config, Event} = 10, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event} = 11, - AssetTxPayment: pallet_asset_tx_payment::{Pallet, Storage, Event} = 12, + Balances: pallet_balances = 10, + TransactionPayment: pallet_transaction_payment = 11, + AssetTxPayment: pallet_asset_tx_payment = 12, // Collator support. The order of these 5 are important and shall not change. - Authorship: pallet_authorship::{Pallet, Storage} = 20, - CollatorSelection: pallet_collator_selection::{Pallet, Call, Storage, Event, Config} = 21, - Session: pallet_session::{Pallet, Call, Storage, Event, Config} = 22, - Aura: pallet_aura::{Pallet, Storage, Config} = 23, - AuraExt: cumulus_pallet_aura_ext::{Pallet, Storage, Config} = 24, + Authorship: pallet_authorship = 20, + CollatorSelection: pallet_collator_selection = 21, + Session: pallet_session = 22, + Aura: pallet_aura = 23, + AuraExt: cumulus_pallet_aura_ext = 24, // XCM helpers. - XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event} = 30, - PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event, Origin, Config} = 31, - CumulusXcm: cumulus_pallet_xcm::{Pallet, Event, Origin} = 32, - DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event} = 33, + XcmpQueue: cumulus_pallet_xcmp_queue = 30, + PolkadotXcm: pallet_xcm = 31, + CumulusXcm: cumulus_pallet_xcm = 32, + DmpQueue: cumulus_pallet_dmp_queue = 33, // Runtime features Contracts: pallet_contracts = 40, @@ -703,54 +701,24 @@ construct_runtime!( LockdownMode: pallet_lockdown_mode = 46, // Handy utilities. - Utility: pallet_utility::{Pallet, Call, Event} = 50, - Multisig: pallet_multisig::{Pallet, Call, Storage, Event} = 51, + Utility: pallet_utility = 50, + Multisig: pallet_multisig = 51, // Governance related Council: pallet_collective:: = 60, - Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event} = 61, + Treasury: pallet_treasury = 61, Democracy: pallet_democracy = 62, // Sudo - Sudo: pallet_sudo::{Pallet, Call, Config, Event, Storage} = 100, + Sudo: pallet_sudo = 100, // Additional pallets - Dex: pallet_dex::{Pallet, Call, Storage, Event} = 110, - AssetRegistry: pallet_asset_registry::{Pallet, Call, Storage, Event} = 111, + Dex: pallet_dex = 110, + AssetRegistry: pallet_asset_registry = 111, WithdrawTeleport: pallet_withdraw_teleport = 112, } ); -pub mod migrations { - use super::*; - use frame_support::traits::{GetStorageVersion, OnRuntimeUpgrade, StorageVersion}; - - /// Migrations that set `StorageVersion`s we missed to set. - /// - /// It's *possible* that these pallets have not in fact been migrated to the versions being set, - /// which we should keep in mind in the future if we notice any strange behavior. - /// We opted to not check exactly what on-chain versions each pallet is at, since it would be - /// an involved effort, this is testnet, and no one has complained - /// (https://github.com/paritytech/polkadot-sdk/issues/6657#issuecomment-1552956439). - pub struct SetStorageVersions; - - impl OnRuntimeUpgrade for SetStorageVersions { - fn on_runtime_upgrade() -> Weight { - let mut writes = 0; - let mut reads = 0; - - // Scheduler - if Scheduler::on_chain_storage_version() < 4 { - StorageVersion::new(4).put::(); - writes += 1; - } - reads += 1; - - RocksDbWeight::get().reads_writes(reads, writes) - } - } -} - #[cfg(feature = "runtime-benchmarks")] mod benches { define_benchmarks!( diff --git a/runtime/trappist/src/weights/block_weights.rs b/runtime/trappist/src/weights/block_weights.rs index db912596..354b0d05 100644 --- a/runtime/trappist/src/weights/block_weights.rs +++ b/runtime/trappist/src/weights/block_weights.rs @@ -16,8 +16,8 @@ // limitations under the License. //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04 (Y/M/D) -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! DATE: 2023-11-23 (Y/M/D) +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Trappist Development` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 403_736, 438_006 - /// Average: 412_652 - /// Median: 411_401 - /// Std-Dev: 6866.93 + /// Min, Max: 441_980, 611_195 + /// Average: 453_516 + /// Median: 450_655 + /// Std-Dev: 17529.75 /// /// Percentiles nanoseconds: - /// 99th: 432_567 - /// 95th: 426_122 - /// 75th: 414_441 + /// 99th: 476_316 + /// 95th: 468_094 + /// 75th: 455_104 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(412_652), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(453_516), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs index 26636029..a437c6cc 100644 --- a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `cumulus_pallet_xcmp_queue` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -56,8 +56,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 6_055_000 picoseconds. - Weight::from_parts(6_437_000, 0) + // Minimum execution time: 5_791_000 picoseconds. + Weight::from_parts(6_211_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 6_137_000 picoseconds. - Weight::from_parts(6_381_000, 0) + // Minimum execution time: 5_878_000 picoseconds. + Weight::from_parts(6_112_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/extrinsic_weights.rs b/runtime/trappist/src/weights/extrinsic_weights.rs index 17111ca2..abc2f5a6 100644 --- a/runtime/trappist/src/weights/extrinsic_weights.rs +++ b/runtime/trappist/src/weights/extrinsic_weights.rs @@ -16,8 +16,8 @@ // limitations under the License. //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04 (Y/M/D) -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! DATE: 2023-11-23 (Y/M/D) +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Trappist Development` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 131_387, 134_063 - /// Average: 132_612 - /// Median: 132_584 - /// Std-Dev: 547.8 + /// Min, Max: 130_591, 132_299 + /// Average: 131_374 + /// Median: 131_351 + /// Std-Dev: 369.27 /// /// Percentiles nanoseconds: - /// 99th: 134_021 - /// 95th: 133_497 - /// 75th: 132_981 + /// 99th: 132_205 + /// 95th: 132_034 + /// 75th: 131_614 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(132_612), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(131_374), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/frame_system.rs b/runtime/trappist/src/weights/frame_system.rs index 8663683a..7666b1c4 100644 --- a/runtime/trappist/src/weights/frame_system.rs +++ b/runtime/trappist/src/weights/frame_system.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `frame_system` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -55,22 +55,22 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_066_000 picoseconds. - Weight::from_parts(6_512_307, 0) + // Minimum execution time: 1_770_000 picoseconds. + Weight::from_parts(579_651, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(431, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(445, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_879_000 picoseconds. - Weight::from_parts(8_118_000, 0) + // Minimum execution time: 7_111_000 picoseconds. + Weight::from_parts(9_292_470, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_803, 0).saturating_mul(b.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_739, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -80,8 +80,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 3_859_000 picoseconds. - Weight::from_parts(4_034_000, 0) + // Minimum execution time: 3_774_000 picoseconds. + Weight::from_parts(4_007_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -100,11 +100,11 @@ impl frame_system::WeightInfo for WeightInfo { /// Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { // Proof Size summary in bytes: - // Measured: `190` - // Estimated: `1675` - // Minimum execution time: 97_924_958_000 picoseconds. - Weight::from_parts(101_894_755_000, 0) - .saturating_add(Weight::from_parts(0, 1675)) + // Measured: `198` + // Estimated: `1683` + // Minimum execution time: 112_503_449_000 picoseconds. + Weight::from_parts(115_367_275_000, 0) + .saturating_add(Weight::from_parts(0, 1683)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -115,11 +115,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_157_000 picoseconds. - Weight::from_parts(2_269_000, 0) + // Minimum execution time: 1_960_000 picoseconds. + Weight::from_parts(2_028_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2_133 - .saturating_add(Weight::from_parts(737_514, 0).saturating_mul(i.into())) + // Standard Error: 1_461 + .saturating_add(Weight::from_parts(746_064, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -129,11 +129,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_159_000 picoseconds. - Weight::from_parts(2_311_000, 0) + // Minimum execution time: 2_031_000 picoseconds. + Weight::from_parts(2_088_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 921 - .saturating_add(Weight::from_parts(555_170, 0).saturating_mul(i.into())) + // Standard Error: 872 + .saturating_add(Weight::from_parts(555_978, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -143,11 +143,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `87 + p * (69 ±0)` // Estimated: `92 + p * (70 ±0)` - // Minimum execution time: 3_966_000 picoseconds. - Weight::from_parts(4_121_000, 0) + // Minimum execution time: 3_768_000 picoseconds. + Weight::from_parts(3_897_000, 0) .saturating_add(Weight::from_parts(0, 92)) - // Standard Error: 1_650 - .saturating_add(Weight::from_parts(1_205_126, 0).saturating_mul(p.into())) + // Standard Error: 1_504 + .saturating_add(Weight::from_parts(1_165_726, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_asset_registry.rs b/runtime/trappist/src/weights/pallet_asset_registry.rs index 4de62663..f0d9a1ca 100644 --- a/runtime/trappist/src/weights/pallet_asset_registry.rs +++ b/runtime/trappist/src/weights/pallet_asset_registry.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_asset_registry` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -60,8 +60,8 @@ impl pallet_asset_registry::WeightInfo for WeightInfo pallet_asset_registry::WeightInfo for WeightInfo pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145` // Estimated: `3675` - // Minimum execution time: 27_680_000 picoseconds. - Weight::from_parts(28_286_000, 0) + // Minimum execution time: 26_596_000 picoseconds. + Weight::from_parts(27_655_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -70,8 +70,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3675` - // Minimum execution time: 12_783_000 picoseconds. - Weight::from_parts(13_279_000, 0) + // Minimum execution time: 12_212_000 picoseconds. + Weight::from_parts(12_625_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -82,8 +82,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 14_381_000 picoseconds. - Weight::from_parts(14_722_000, 0) + // Minimum execution time: 13_204_000 picoseconds. + Weight::from_parts(13_434_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -99,11 +99,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + c * (208 ±0)` // Estimated: `3675 + c * (2609 ±0)` - // Minimum execution time: 17_392_000 picoseconds. - Weight::from_parts(17_587_000, 0) + // Minimum execution time: 16_358_000 picoseconds. + Weight::from_parts(16_704_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 12_438 - .saturating_add(Weight::from_parts(15_476_053, 0).saturating_mul(c.into())) + // Standard Error: 8_351 + .saturating_add(Weight::from_parts(14_373_951, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -119,11 +119,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `451 + a * (86 ±0)` // Estimated: `3675 + a * (2623 ±0)` - // Minimum execution time: 17_702_000 picoseconds. - Weight::from_parts(18_069_000, 0) + // Minimum execution time: 16_148_000 picoseconds. + Weight::from_parts(16_767_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 5_851 - .saturating_add(Weight::from_parts(15_731_731, 0).saturating_mul(a.into())) + // Standard Error: 4_914 + .saturating_add(Weight::from_parts(15_393_587, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -138,8 +138,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 15_013_000 picoseconds. - Weight::from_parts(15_515_000, 0) + // Minimum execution time: 13_820_000 picoseconds. + Weight::from_parts(14_153_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -152,8 +152,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 26_101_000 picoseconds. - Weight::from_parts(26_872_000, 0) + // Minimum execution time: 24_651_000 picoseconds. + Weight::from_parts(25_124_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -166,8 +166,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 32_101_000 picoseconds. - Weight::from_parts(33_200_000, 0) + // Minimum execution time: 30_750_000 picoseconds. + Weight::from_parts(31_498_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -182,8 +182,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 45_175_000 picoseconds. - Weight::from_parts(46_297_000, 0) + // Minimum execution time: 44_200_000 picoseconds. + Weight::from_parts(45_223_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -198,8 +198,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 39_346_000 picoseconds. - Weight::from_parts(40_190_000, 0) + // Minimum execution time: 37_880_000 picoseconds. + Weight::from_parts(38_663_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -214,8 +214,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 44_945_000 picoseconds. - Weight::from_parts(45_734_000, 0) + // Minimum execution time: 44_417_000 picoseconds. + Weight::from_parts(45_267_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -228,8 +228,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 17_096_000 picoseconds. - Weight::from_parts(17_762_000, 0) + // Minimum execution time: 16_180_000 picoseconds. + Weight::from_parts(16_635_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_795_000 picoseconds. - Weight::from_parts(17_310_000, 0) + // Minimum execution time: 15_967_000 picoseconds. + Weight::from_parts(16_526_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -254,8 +254,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 13_176_000 picoseconds. - Weight::from_parts(13_700_000, 0) + // Minimum execution time: 12_056_000 picoseconds. + Weight::from_parts(12_507_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -266,8 +266,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 12_995_000 picoseconds. - Weight::from_parts(13_467_000, 0) + // Minimum execution time: 12_027_000 picoseconds. + Weight::from_parts(12_288_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -280,8 +280,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 15_336_000 picoseconds. - Weight::from_parts(15_697_000, 0) + // Minimum execution time: 14_435_000 picoseconds. + Weight::from_parts(14_935_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -292,8 +292,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_040_000 picoseconds. - Weight::from_parts(14_475_000, 0) + // Minimum execution time: 13_055_000 picoseconds. + Weight::from_parts(13_516_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -308,13 +308,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 28_182_000 picoseconds. - Weight::from_parts(28_858_733, 0) + // Minimum execution time: 27_163_000 picoseconds. + Weight::from_parts(28_071_058, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 700 - .saturating_add(Weight::from_parts(3_947, 0).saturating_mul(n.into())) - // Standard Error: 700 - .saturating_add(Weight::from_parts(4_205, 0).saturating_mul(s.into())) + // Standard Error: 543 + .saturating_add(Weight::from_parts(2_371, 0).saturating_mul(n.into())) + // Standard Error: 543 + .saturating_add(Weight::from_parts(1_350, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -326,8 +326,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 29_323_000 picoseconds. - Weight::from_parts(29_600_000, 0) + // Minimum execution time: 28_310_000 picoseconds. + Weight::from_parts(28_691_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -342,13 +342,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `119` // Estimated: `3675` - // Minimum execution time: 14_373_000 picoseconds. - Weight::from_parts(15_004_277, 0) + // Minimum execution time: 13_283_000 picoseconds. + Weight::from_parts(13_945_527, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 362 - .saturating_add(Weight::from_parts(2_433, 0).saturating_mul(n.into())) - // Standard Error: 362 - .saturating_add(Weight::from_parts(1_182, 0).saturating_mul(s.into())) + // Standard Error: 350 + .saturating_add(Weight::from_parts(1_133, 0).saturating_mul(n.into())) + // Standard Error: 350 + .saturating_add(Weight::from_parts(837, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -360,8 +360,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 29_066_000 picoseconds. - Weight::from_parts(29_410_000, 0) + // Minimum execution time: 27_834_000 picoseconds. + Weight::from_parts(28_331_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -372,8 +372,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 13_517_000 picoseconds. - Weight::from_parts(13_849_000, 0) + // Minimum execution time: 12_725_000 picoseconds. + Weight::from_parts(13_187_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -386,8 +386,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 31_971_000 picoseconds. - Weight::from_parts(32_516_000, 0) + // Minimum execution time: 30_860_000 picoseconds. + Weight::from_parts(31_736_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -404,8 +404,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `6208` - // Minimum execution time: 63_731_000 picoseconds. - Weight::from_parts(64_601_000, 0) + // Minimum execution time: 62_944_000 picoseconds. + Weight::from_parts(64_024_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -418,8 +418,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 34_218_000 picoseconds. - Weight::from_parts(35_077_000, 0) + // Minimum execution time: 33_388_000 picoseconds. + Weight::from_parts(34_505_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -432,8 +432,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 35_519_000 picoseconds. - Weight::from_parts(36_086_000, 0) + // Minimum execution time: 34_552_000 picoseconds. + Weight::from_parts(34_990_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -444,8 +444,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_441_000 picoseconds. - Weight::from_parts(14_839_000, 0) + // Minimum execution time: 13_396_000 picoseconds. + Weight::from_parts(13_832_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -460,8 +460,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420` // Estimated: `3675` - // Minimum execution time: 34_145_000 picoseconds. - Weight::from_parts(34_929_000, 0) + // Minimum execution time: 33_671_000 picoseconds. + Weight::from_parts(34_324_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -474,8 +474,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 31_387_000 picoseconds. - Weight::from_parts(31_898_000, 0) + // Minimum execution time: 30_740_000 picoseconds. + Weight::from_parts(31_346_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -490,8 +490,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `546` // Estimated: `3675` - // Minimum execution time: 31_369_000 picoseconds. - Weight::from_parts(32_104_000, 0) + // Minimum execution time: 31_120_000 picoseconds. + Weight::from_parts(31_688_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -504,8 +504,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `439` // Estimated: `3675` - // Minimum execution time: 28_416_000 picoseconds. - Weight::from_parts(29_024_000, 0) + // Minimum execution time: 27_955_000 picoseconds. + Weight::from_parts(28_792_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -518,8 +518,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_779_000 picoseconds. - Weight::from_parts(17_403_000, 0) + // Minimum execution time: 16_039_000 picoseconds. + Weight::from_parts(16_684_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_balances.rs b/runtime/trappist/src/weights/pallet_balances.rs index 932c37ef..444d3af8 100644 --- a/runtime/trappist/src/weights/pallet_balances.rs +++ b/runtime/trappist/src/weights/pallet_balances.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_balances` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -56,8 +56,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 55_599_000 picoseconds. - Weight::from_parts(56_642_000, 0) + // Minimum execution time: 54_279_000 picoseconds. + Weight::from_parts(55_345_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 41_363_000 picoseconds. - Weight::from_parts(42_086_000, 0) + // Minimum execution time: 40_583_000 picoseconds. + Weight::from_parts(41_159_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -80,8 +80,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 15_754_000 picoseconds. - Weight::from_parts(16_292_000, 0) + // Minimum execution time: 15_930_000 picoseconds. + Weight::from_parts(16_532_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 23_653_000 picoseconds. - Weight::from_parts(24_211_000, 0) + // Minimum execution time: 23_203_000 picoseconds. + Weight::from_parts(23_761_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -104,8 +104,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `6196` - // Minimum execution time: 58_620_000 picoseconds. - Weight::from_parts(59_698_000, 0) + // Minimum execution time: 57_286_000 picoseconds. + Weight::from_parts(58_076_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -116,8 +116,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 52_207_000 picoseconds. - Weight::from_parts(52_543_000, 0) + // Minimum execution time: 50_676_000 picoseconds. + Weight::from_parts(51_296_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -128,8 +128,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 18_520_000 picoseconds. - Weight::from_parts(19_176_000, 0) + // Minimum execution time: 18_740_000 picoseconds. + Weight::from_parts(19_195_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -141,11 +141,11 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + u * (136 ±0)` // Estimated: `990 + u * (2603 ±0)` - // Minimum execution time: 18_163_000 picoseconds. - Weight::from_parts(18_491_000, 0) + // Minimum execution time: 18_459_000 picoseconds. + Weight::from_parts(18_682_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 15_326 - .saturating_add(Weight::from_parts(15_630_628, 0).saturating_mul(u.into())) + // Standard Error: 14_201 + .saturating_add(Weight::from_parts(15_594_871, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(u.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(u.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(u.into())) diff --git a/runtime/trappist/src/weights/pallet_collator_selection.rs b/runtime/trappist/src/weights/pallet_collator_selection.rs index ff5416f5..489ab4b5 100644 --- a/runtime/trappist/src/weights/pallet_collator_selection.rs +++ b/runtime/trappist/src/weights/pallet_collator_selection.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_collator_selection` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -59,11 +59,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `214 + b * (78 ±0)` // Estimated: `1203 + b * (2554 ±0)` - // Minimum execution time: 14_528_000 picoseconds. - Weight::from_parts(11_843_237, 0) + // Minimum execution time: 13_865_000 picoseconds. + Weight::from_parts(11_800_235, 0) .saturating_add(Weight::from_parts(0, 1203)) - // Standard Error: 4_144 - .saturating_add(Weight::from_parts(3_148_150, 0).saturating_mul(b.into())) + // Standard Error: 4_264 + .saturating_add(Weight::from_parts(3_155_180, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 2554).saturating_mul(b.into())) @@ -82,13 +82,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1293 + b * (32 ±0) + c * (48 ±0)` // Estimated: `49487 + b * (33 ±0) + c * (49 ±0)` - // Minimum execution time: 59_736_000 picoseconds. - Weight::from_parts(48_521_566, 0) + // Minimum execution time: 57_470_000 picoseconds. + Weight::from_parts(60_516_122, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 10_641 - .saturating_add(Weight::from_parts(55_025, 0).saturating_mul(b.into())) - // Standard Error: 1_044 - .saturating_add(Weight::from_parts(144_392, 0).saturating_mul(c.into())) + // Standard Error: 956 + .saturating_add(Weight::from_parts(86_572, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(b.into())) @@ -103,11 +101,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `82 + b * (32 ±0)` // Estimated: `49487` - // Minimum execution time: 14_636_000 picoseconds. - Weight::from_parts(16_673_417, 0) + // Minimum execution time: 14_298_000 picoseconds. + Weight::from_parts(16_023_748, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_032 - .saturating_add(Weight::from_parts(92_440, 0).saturating_mul(b.into())) + // Standard Error: 1_371 + .saturating_add(Weight::from_parts(94_407, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -117,8 +115,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_329_000 picoseconds. - Weight::from_parts(7_615_000, 0) + // Minimum execution time: 6_916_000 picoseconds. + Weight::from_parts(7_254_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -128,8 +126,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_152_000 picoseconds. - Weight::from_parts(7_635_000, 0) + // Minimum execution time: 7_210_000 picoseconds. + Weight::from_parts(7_460_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -150,11 +148,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1104 + c * (48 ±0)` // Estimated: `49487 + c * (49 ±0)` - // Minimum execution time: 41_638_000 picoseconds. - Weight::from_parts(39_414_396, 0) + // Minimum execution time: 39_585_000 picoseconds. + Weight::from_parts(41_327_049, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_674 - .saturating_add(Weight::from_parts(157_563, 0).saturating_mul(c.into())) + // Standard Error: 1_174 + .saturating_add(Weight::from_parts(95_975, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into())) @@ -170,11 +168,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `539 + c * (48 ±0)` // Estimated: `49487` - // Minimum execution time: 32_774_000 picoseconds. - Weight::from_parts(31_659_377, 0) + // Minimum execution time: 31_233_000 picoseconds. + Weight::from_parts(32_078_894, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_626 - .saturating_add(Weight::from_parts(141_920, 0).saturating_mul(c.into())) + // Standard Error: 1_184 + .saturating_add(Weight::from_parts(85_242, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -188,8 +186,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `140` // Estimated: `6196` - // Minimum execution time: 46_455_000 picoseconds. - Weight::from_parts(47_117_000, 0) + // Minimum execution time: 46_910_000 picoseconds. + Weight::from_parts(47_754_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) @@ -210,11 +208,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `22758 + c * (97 ±0) + r * (116 ±0)` // Estimated: `49487 + c * (2519 ±0) + r * (2603 ±0)` - // Minimum execution time: 17_216_000 picoseconds. - Weight::from_parts(17_612_000, 0) + // Minimum execution time: 16_994_000 picoseconds. + Weight::from_parts(17_390_000, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 717_852 - .saturating_add(Weight::from_parts(30_766_703, 0).saturating_mul(c.into())) + // Standard Error: 688_979 + .saturating_add(Weight::from_parts(29_573_329, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_collective.rs b/runtime/trappist/src/weights/pallet_collective.rs index 05ab797c..240ab8c8 100644 --- a/runtime/trappist/src/weights/pallet_collective.rs +++ b/runtime/trappist/src/weights/pallet_collective.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_collective` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -64,14 +64,14 @@ impl pallet_collective::WeightInfo for WeightInfo { fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + m * (3232 ±0) + p * (3190 ±0)` - // Estimated: `15691 + m * (1967 ±23) + p * (4332 ±23)` - // Minimum execution time: 16_224_000 picoseconds. - Weight::from_parts(16_988_000, 0) + // Estimated: `15691 + m * (1967 ±24) + p * (4332 ±24)` + // Minimum execution time: 16_765_000 picoseconds. + Weight::from_parts(17_107_000, 0) .saturating_add(Weight::from_parts(0, 15691)) - // Standard Error: 58_846 - .saturating_add(Weight::from_parts(4_467_888, 0).saturating_mul(m.into())) - // Standard Error: 58_846 - .saturating_add(Weight::from_parts(7_868_399, 0).saturating_mul(p.into())) + // Standard Error: 54_382 + .saturating_add(Weight::from_parts(4_167_548, 0).saturating_mul(m.into())) + // Standard Error: 54_382 + .saturating_add(Weight::from_parts(7_482_580, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -89,13 +89,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `1618 + m * (32 ±0)` - // Minimum execution time: 19_766_000 picoseconds. - Weight::from_parts(19_316_881, 0) + // Minimum execution time: 19_188_000 picoseconds. + Weight::from_parts(18_521_068, 0) .saturating_add(Weight::from_parts(0, 1618)) - // Standard Error: 29 - .saturating_add(Weight::from_parts(1_554, 0).saturating_mul(b.into())) - // Standard Error: 302 - .saturating_add(Weight::from_parts(11_364, 0).saturating_mul(m.into())) + // Standard Error: 24 + .saturating_add(Weight::from_parts(1_641, 0).saturating_mul(b.into())) + // Standard Error: 254 + .saturating_add(Weight::from_parts(14_175, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -111,13 +111,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `3598 + m * (32 ±0)` - // Minimum execution time: 22_611_000 picoseconds. - Weight::from_parts(21_483_130, 0) + // Minimum execution time: 21_746_000 picoseconds. + Weight::from_parts(20_905_609, 0) .saturating_add(Weight::from_parts(0, 3598)) - // Standard Error: 46 - .saturating_add(Weight::from_parts(1_982, 0).saturating_mul(b.into())) - // Standard Error: 483 - .saturating_add(Weight::from_parts(24_979, 0).saturating_mul(m.into())) + // Standard Error: 28 + .saturating_add(Weight::from_parts(1_692, 0).saturating_mul(b.into())) + // Standard Error: 291 + .saturating_add(Weight::from_parts(21_254, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -138,15 +138,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `322 + m * (32 ±0) + p * (36 ±0)` // Estimated: `3714 + m * (33 ±0) + p * (36 ±0)` - // Minimum execution time: 25_401_000 picoseconds. - Weight::from_parts(24_094_051, 0) + // Minimum execution time: 25_107_000 picoseconds. + Weight::from_parts(23_678_593, 0) .saturating_add(Weight::from_parts(0, 3714)) - // Standard Error: 101 - .saturating_add(Weight::from_parts(3_128, 0).saturating_mul(b.into())) - // Standard Error: 1_059 - .saturating_add(Weight::from_parts(27_909, 0).saturating_mul(m.into())) - // Standard Error: 1_046 - .saturating_add(Weight::from_parts(191_987, 0).saturating_mul(p.into())) + // Standard Error: 84 + .saturating_add(Weight::from_parts(3_037, 0).saturating_mul(b.into())) + // Standard Error: 884 + .saturating_add(Weight::from_parts(27_286, 0).saturating_mul(m.into())) + // Standard Error: 873 + .saturating_add(Weight::from_parts(189_444, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(m.into())) @@ -161,11 +161,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + m * (64 ±0)` // Estimated: `4235 + m * (64 ±0)` - // Minimum execution time: 26_092_000 picoseconds. - Weight::from_parts(27_425_977, 0) + // Minimum execution time: 25_033_000 picoseconds. + Weight::from_parts(26_258_335, 0) .saturating_add(Weight::from_parts(0, 4235)) - // Standard Error: 1_072 - .saturating_add(Weight::from_parts(45_590, 0).saturating_mul(m.into())) + // Standard Error: 888 + .saturating_add(Weight::from_parts(36_072, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -184,13 +184,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `360 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3805 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 28_134_000 picoseconds. - Weight::from_parts(28_694_626, 0) + // Minimum execution time: 27_324_000 picoseconds. + Weight::from_parts(26_992_564, 0) .saturating_add(Weight::from_parts(0, 3805)) - // Standard Error: 965 - .saturating_add(Weight::from_parts(27_359, 0).saturating_mul(m.into())) - // Standard Error: 941 - .saturating_add(Weight::from_parts(179_851, 0).saturating_mul(p.into())) + // Standard Error: 902 + .saturating_add(Weight::from_parts(32_257, 0).saturating_mul(m.into())) + // Standard Error: 880 + .saturating_add(Weight::from_parts(187_084, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -213,15 +213,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4079 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 45_018_000 picoseconds. - Weight::from_parts(42_862_460, 0) + // Minimum execution time: 43_148_000 picoseconds. + Weight::from_parts(43_069_902, 0) .saturating_add(Weight::from_parts(0, 4079)) - // Standard Error: 223 - .saturating_add(Weight::from_parts(4_480, 0).saturating_mul(b.into())) - // Standard Error: 2_360 - .saturating_add(Weight::from_parts(23_383, 0).saturating_mul(m.into())) - // Standard Error: 2_300 - .saturating_add(Weight::from_parts(247_401, 0).saturating_mul(p.into())) + // Standard Error: 190 + .saturating_add(Weight::from_parts(3_410, 0).saturating_mul(b.into())) + // Standard Error: 2_011 + .saturating_add(Weight::from_parts(11_682, 0).saturating_mul(m.into())) + // Standard Error: 1_960 + .saturating_add(Weight::from_parts(235_022, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -244,13 +244,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `380 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3825 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 31_435_000 picoseconds. - Weight::from_parts(30_599_046, 0) + // Minimum execution time: 30_213_000 picoseconds. + Weight::from_parts(29_411_460, 0) .saturating_add(Weight::from_parts(0, 3825)) - // Standard Error: 1_034 - .saturating_add(Weight::from_parts(36_563, 0).saturating_mul(m.into())) - // Standard Error: 1_008 - .saturating_add(Weight::from_parts(185_099, 0).saturating_mul(p.into())) + // Standard Error: 912 + .saturating_add(Weight::from_parts(38_216, 0).saturating_mul(m.into())) + // Standard Error: 890 + .saturating_add(Weight::from_parts(190_448, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -275,15 +275,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `782 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4099 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 48_225_000 picoseconds. - Weight::from_parts(48_012_798, 0) + // Minimum execution time: 45_574_000 picoseconds. + Weight::from_parts(45_876_001, 0) .saturating_add(Weight::from_parts(0, 4099)) - // Standard Error: 195 - .saturating_add(Weight::from_parts(3_652, 0).saturating_mul(b.into())) - // Standard Error: 2_067 - .saturating_add(Weight::from_parts(25_730, 0).saturating_mul(m.into())) - // Standard Error: 2_015 - .saturating_add(Weight::from_parts(246_200, 0).saturating_mul(p.into())) + // Standard Error: 149 + .saturating_add(Weight::from_parts(3_518, 0).saturating_mul(b.into())) + // Standard Error: 1_582 + .saturating_add(Weight::from_parts(29_142, 0).saturating_mul(m.into())) + // Standard Error: 1_542 + .saturating_add(Weight::from_parts(236_469, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -301,11 +301,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `189 + p * (32 ±0)` // Estimated: `1674 + p * (32 ±0)` - // Minimum execution time: 15_594_000 picoseconds. - Weight::from_parts(16_732_207, 0) + // Minimum execution time: 15_380_000 picoseconds. + Weight::from_parts(16_476_515, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_054 - .saturating_add(Weight::from_parts(169_078, 0).saturating_mul(p.into())) + // Standard Error: 791 + .saturating_add(Weight::from_parts(164_838, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_contracts.rs b/runtime/trappist/src/weights/pallet_contracts.rs index 45859220..c871473e 100644 --- a/runtime/trappist/src/weights/pallet_contracts.rs +++ b/runtime/trappist/src/weights/pallet_contracts.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_contracts` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -56,8 +56,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_137_000 picoseconds. - Weight::from_parts(3_338_000, 0) + // Minimum execution time: 3_065_000 picoseconds. + Weight::from_parts(3_302_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -68,11 +68,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `391 + k * (69 ±0)` // Estimated: `381 + k * (70 ±0)` - // Minimum execution time: 13_467_000 picoseconds. - Weight::from_parts(13_716_000, 0) + // Minimum execution time: 13_481_000 picoseconds. + Weight::from_parts(13_766_000, 0) .saturating_add(Weight::from_parts(0, 381)) - // Standard Error: 1_617 - .saturating_add(Weight::from_parts(1_171_447, 0).saturating_mul(k.into())) + // Standard Error: 1_192 + .saturating_add(Weight::from_parts(1_053_124, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -86,25 +86,25 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145 + c * (1 ±0)` // Estimated: `6083 + c * (1 ±0)` - // Minimum execution time: 8_705_000 picoseconds. - Weight::from_parts(5_665_616, 0) + // Minimum execution time: 8_740_000 picoseconds. + Weight::from_parts(6_055_634, 0) .saturating_add(Weight::from_parts(0, 6083)) // Standard Error: 5 - .saturating_add(Weight::from_parts(1_710, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_690, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) } /// Storage: `Contracts::ContractInfoOf` (r:2 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) fn v10_migration_step() -> Weight { // Proof Size summary in bytes: // Measured: `482` // Estimated: `6422` - // Minimum execution time: 16_652_000 picoseconds. - Weight::from_parts(17_452_000, 0) + // Minimum execution time: 16_936_000 picoseconds. + Weight::from_parts(17_608_000, 0) .saturating_add(Weight::from_parts(0, 6422)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -118,11 +118,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `105 + k * (1 ±0)` // Estimated: `3569 + k * (1 ±0)` - // Minimum execution time: 4_310_000 picoseconds. - Weight::from_parts(4_504_000, 0) + // Minimum execution time: 4_185_000 picoseconds. + Weight::from_parts(4_313_000, 0) .saturating_add(Weight::from_parts(0, 3569)) - // Standard Error: 481 - .saturating_add(Weight::from_parts(996_234, 0).saturating_mul(k.into())) + // Standard Error: 576 + .saturating_add(Weight::from_parts(1_006_690, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) @@ -141,11 +141,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `259 + c * (1 ±0)` // Estimated: `6197 + c * (1 ±0)` - // Minimum execution time: 16_570_000 picoseconds. - Weight::from_parts(17_160_154, 0) + // Minimum execution time: 15_963_000 picoseconds. + Weight::from_parts(16_189_005, 0) .saturating_add(Weight::from_parts(0, 6197)) // Standard Error: 1 - .saturating_add(Weight::from_parts(530, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(500, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -154,27 +154,29 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) fn v13_migration_step() -> Weight { // Proof Size summary in bytes: - // Measured: `440` - // Estimated: `6380` - // Minimum execution time: 12_704_000 picoseconds. - Weight::from_parts(13_147_000, 6380) - .saturating_add(T::DbWeight::get().reads(2_u64)) - .saturating_add(T::DbWeight::get().writes(1_u64)) + // Measured: `374` + // Estimated: `6314` + // Minimum execution time: 12_088_000 picoseconds. + Weight::from_parts(12_629_000, 0) + .saturating_add(Weight::from_parts(0, 6314)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Contracts::CodeInfoOf` (r:2 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Balances::Holds` (r:1 w:0) - /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) fn v14_migration_step() -> Weight { // Proof Size summary in bytes: - // Measured: `360` - // Estimated: `6300` - // Minimum execution time: 48_387_000 picoseconds. - Weight::from_parts(50_024_000, 6300) - .saturating_add(T::DbWeight::get().reads(4_u64)) - .saturating_add(T::DbWeight::get().writes(1_u64)) + // Measured: `294` + // Estimated: `6234` + // Minimum execution time: 46_049_000 picoseconds. + Weight::from_parts(47_110_000, 0) + .saturating_add(Weight::from_parts(0, 6234)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Contracts::ContractInfoOf` (r:2 w:1) /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) @@ -182,12 +184,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) fn v15_migration_step() -> Weight { // Proof Size summary in bytes: - // Measured: `594` - // Estimated: `6534` - // Minimum execution time: 59_300_000 picoseconds. - Weight::from_parts(61_805_000, 6534) - .saturating_add(T::DbWeight::get().reads(4_u64)) - .saturating_add(T::DbWeight::get().writes(2_u64)) + // Measured: `566` + // Estimated: `6506` + // Minimum execution time: 54_294_000 picoseconds. + Weight::from_parts(56_280_000, 0) + .saturating_add(Weight::from_parts(0, 6506)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:1) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) @@ -195,8 +198,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_679_000 picoseconds. - Weight::from_parts(4_017_000, 0) + // Minimum execution time: 3_594_000 picoseconds. + Weight::from_parts(3_788_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -209,8 +212,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3565` - // Minimum execution time: 10_938_000 picoseconds. - Weight::from_parts(11_619_000, 0) + // Minimum execution time: 10_545_000 picoseconds. + Weight::from_parts(11_147_000, 0) .saturating_add(Weight::from_parts(0, 3565)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -221,8 +224,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 4_144_000 picoseconds. - Weight::from_parts(4_460_000, 0) + // Minimum execution time: 4_089_000 picoseconds. + Weight::from_parts(4_287_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -234,8 +237,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3566` - // Minimum execution time: 5_819_000 picoseconds. - Weight::from_parts(6_261_000, 0) + // Minimum execution time: 5_813_000 picoseconds. + Weight::from_parts(6_256_000, 0) .saturating_add(Weight::from_parts(0, 3566)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -247,8 +250,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 6_097_000 picoseconds. - Weight::from_parts(6_368_000, 0) + // Minimum execution time: 6_027_000 picoseconds. + Weight::from_parts(6_240_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -256,7 +259,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -270,13 +273,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `c` is `[0, 125952]`. fn call_with_code_per_byte(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `661 + c * (1 ±0)` - // Estimated: `6608 + c * (1 ±0)` - // Minimum execution time: 364_593_000 picoseconds. - Weight::from_parts(334_953_058, 0) - .saturating_add(Weight::from_parts(0, 6608)) - // Standard Error: 73 - .saturating_add(Weight::from_parts(38_473, 0).saturating_mul(c.into())) + // Measured: `631 + c * (1 ±0)` + // Estimated: `6578 + c * (1 ±0)` + // Minimum execution time: 360_901_000 picoseconds. + Weight::from_parts(339_217_087, 0) + .saturating_add(Weight::from_parts(0, 6578)) + // Standard Error: 75 + .saturating_add(Weight::from_parts(35_649, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -285,15 +288,17 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:1) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) + /// Storage: `Balances::Holds` (r:2 w:2) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// Storage: `System::EventTopics` (r:3 w:3) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Contracts::Nonce` (r:1 w:1) /// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Timestamp::Now` (r:1 w:0) /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) - /// Storage: `System::Account` (r:2 w:2) + /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:0 w:1) /// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`) @@ -303,18 +308,18 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn instantiate_with_code(c: u32, i: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `152` - // Estimated: `8578` - // Minimum execution time: 5_479_633_000 picoseconds. - Weight::from_parts(186_445_948, 0) - .saturating_add(Weight::from_parts(0, 8578)) - // Standard Error: 201 - .saturating_add(Weight::from_parts(117_432, 0).saturating_mul(c.into())) - // Standard Error: 24 - .saturating_add(Weight::from_parts(2_562, 0).saturating_mul(i.into())) - // Standard Error: 24 - .saturating_add(Weight::from_parts(2_597, 0).saturating_mul(s.into())) - .saturating_add(T::DbWeight::get().reads(10)) - .saturating_add(T::DbWeight::get().writes(9)) + // Estimated: `8564` + // Minimum execution time: 5_086_153_000 picoseconds. + Weight::from_parts(563_332_666, 0) + .saturating_add(Weight::from_parts(0, 8564)) + // Standard Error: 118 + .saturating_add(Weight::from_parts(103_382, 0).saturating_mul(c.into())) + // Standard Error: 14 + .saturating_add(Weight::from_parts(2_130, 0).saturating_mul(i.into())) + // Standard Error: 14 + .saturating_add(Weight::from_parts(2_294, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(11)) + .saturating_add(T::DbWeight::get().writes(10)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) @@ -325,33 +330,35 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `Contracts::Nonce` (r:1 w:1) /// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Timestamp::Now` (r:1 w:0) /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) - /// Storage: `System::Account` (r:2 w:2) + /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `System::EventTopics` (r:2 w:2) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Balances::Holds` (r:1 w:1) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// The range of component `i` is `[0, 1048576]`. /// The range of component `s` is `[0, 1048576]`. fn instantiate(i: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `376` - // Estimated: `6354` - // Minimum execution time: 2_443_188_000 picoseconds. - Weight::from_parts(2_495_701_000, 0) - .saturating_add(Weight::from_parts(0, 6354)) - // Standard Error: 30 - .saturating_add(Weight::from_parts(818, 0).saturating_mul(i.into())) - // Standard Error: 30 - .saturating_add(Weight::from_parts(962, 0).saturating_mul(s.into())) + // Estimated: `6338` + // Minimum execution time: 2_248_865_000 picoseconds. + Weight::from_parts(211_530_959, 0) + .saturating_add(Weight::from_parts(0, 6338)) + // Standard Error: 16 + .saturating_add(Weight::from_parts(1_859, 0).saturating_mul(i.into())) + // Standard Error: 16 + .saturating_add(Weight::from_parts(2_170, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -364,11 +371,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) fn call() -> Weight { // Proof Size summary in bytes: - // Measured: `763` - // Estimated: `6703` - // Minimum execution time: 209_463_000 picoseconds. - Weight::from_parts(217_512_000, 0) - .saturating_add(Weight::from_parts(0, 6703)) + // Measured: `732` + // Estimated: `6672` + // Minimum execution time: 206_563_000 picoseconds. + Weight::from_parts(214_578_000, 0) + .saturating_add(Weight::from_parts(0, 6672)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -376,6 +383,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:1) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) + /// Storage: `Balances::Holds` (r:1 w:1) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// Storage: `System::EventTopics` (r:1 w:1) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:0 w:1) @@ -385,47 +394,49 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 322_302_000 picoseconds. - Weight::from_parts(296_607_348, 0) + // Minimum execution time: 344_346_000 picoseconds. + Weight::from_parts(303_409_105, 0) .saturating_add(Weight::from_parts(0, 3541)) - // Standard Error: 115 - .saturating_add(Weight::from_parts(75_377, 0).saturating_mul(c.into())) - .saturating_add(T::DbWeight::get().reads(3)) - .saturating_add(T::DbWeight::get().writes(3)) + // Standard Error: 117 + .saturating_add(Weight::from_parts(69_609, 0).saturating_mul(c.into())) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(4)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:1) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) + /// Storage: `Balances::Holds` (r:1 w:1) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// Storage: `System::EventTopics` (r:1 w:1) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:0 w:1) /// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`) fn remove_code() -> Weight { // Proof Size summary in bytes: - // Measured: `191` - // Estimated: `3656` - // Minimum execution time: 33_654_000 picoseconds. - Weight::from_parts(34_352_000, 0) - .saturating_add(Weight::from_parts(0, 3656)) - .saturating_add(T::DbWeight::get().reads(3)) - .saturating_add(T::DbWeight::get().writes(3)) + // Measured: `246` + // Estimated: `3711` + // Minimum execution time: 43_432_000 picoseconds. + Weight::from_parts(44_016_000, 0) + .saturating_add(Weight::from_parts(0, 3711)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(4)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:2 w:2) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `System::EventTopics` (r:3 w:3) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_code() -> Weight { // Proof Size summary in bytes: - // Measured: `517` - // Estimated: `8932` - // Minimum execution time: 34_486_000 picoseconds. - Weight::from_parts(35_428_000, 0) - .saturating_add(Weight::from_parts(0, 8932)) + // Measured: `486` + // Estimated: `8901` + // Minimum execution time: 32_617_000 picoseconds. + Weight::from_parts(33_838_000, 0) + .saturating_add(Weight::from_parts(0, 8901)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -434,7 +445,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -446,13 +457,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_caller(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `765 + r * (6 ±0)` - // Estimated: `6706 + r * (6 ±0)` - // Minimum execution time: 334_140_000 picoseconds. - Weight::from_parts(344_058_027, 0) - .saturating_add(Weight::from_parts(0, 6706)) - // Standard Error: 465 - .saturating_add(Weight::from_parts(351_113, 0).saturating_mul(r.into())) + // Measured: `734 + r * (6 ±0)` + // Estimated: `6674 + r * (6 ±0)` + // Minimum execution time: 332_521_000 picoseconds. + Weight::from_parts(344_840_660, 0) + .saturating_add(Weight::from_parts(0, 6674)) + // Standard Error: 407 + .saturating_add(Weight::from_parts(363_156, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -462,7 +473,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1601 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -474,24 +485,24 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_is_contract(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `823 + r * (240 ±0)` - // Estimated: `6727 + r * (2715 ±0)` - // Minimum execution time: 336_404_000 picoseconds. - Weight::from_parts(150_362_011, 0) - .saturating_add(Weight::from_parts(0, 6727)) - // Standard Error: 7_331 - .saturating_add(Weight::from_parts(3_886_039, 0).saturating_mul(r.into())) + // Measured: `790 + r * (209 ±0)` + // Estimated: `6694 + r * (2684 ±0)` + // Minimum execution time: 329_251_000 picoseconds. + Weight::from_parts(189_362_881, 0) + .saturating_add(Weight::from_parts(0, 6694)) + // Standard Error: 5_447 + .saturating_add(Weight::from_parts(3_636_992, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) - .saturating_add(Weight::from_parts(0, 2715).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 2684).saturating_mul(r.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1601 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -503,24 +514,24 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_code_hash(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `815 + r * (244 ±0)` - // Estimated: `6731 + r * (2719 ±0)` - // Minimum execution time: 336_716_000 picoseconds. - Weight::from_parts(148_066_972, 0) - .saturating_add(Weight::from_parts(0, 6731)) - // Standard Error: 7_607 - .saturating_add(Weight::from_parts(4_752_845, 0).saturating_mul(r.into())) + // Measured: `789 + r * (213 ±0)` + // Estimated: `6698 + r * (2688 ±0)` + // Minimum execution time: 331_873_000 picoseconds. + Weight::from_parts(186_159_246, 0) + .saturating_add(Weight::from_parts(0, 6698)) + // Standard Error: 5_854 + .saturating_add(Weight::from_parts(4_511_245, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) - .saturating_add(Weight::from_parts(0, 2719).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 2688).saturating_mul(r.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -532,13 +543,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_own_code_hash(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `772 + r * (6 ±0)` - // Estimated: `6714 + r * (6 ±0)` - // Minimum execution time: 336_213_000 picoseconds. - Weight::from_parts(341_993_049, 0) - .saturating_add(Weight::from_parts(0, 6714)) - // Standard Error: 458 - .saturating_add(Weight::from_parts(435_717, 0).saturating_mul(r.into())) + // Measured: `741 + r * (6 ±0)` + // Estimated: `6683 + r * (6 ±0)` + // Minimum execution time: 333_634_000 picoseconds. + Weight::from_parts(342_165_481, 0) + .saturating_add(Weight::from_parts(0, 6683)) + // Standard Error: 532 + .saturating_add(Weight::from_parts(472_064, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -548,7 +559,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -560,13 +571,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_caller_is_origin(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `762 + r * (3 ±0)` - // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 331_257_000 picoseconds. - Weight::from_parts(340_650_198, 0) - .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 350 - .saturating_add(Weight::from_parts(189_019, 0).saturating_mul(r.into())) + // Measured: `731 + r * (3 ±0)` + // Estimated: `6672 + r * (3 ±0)` + // Minimum execution time: 328_909_000 picoseconds. + Weight::from_parts(340_433_911, 0) + .saturating_add(Weight::from_parts(0, 6672)) + // Standard Error: 383 + .saturating_add(Weight::from_parts(188_960, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -574,7 +585,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -586,13 +597,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_caller_is_root(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `652 + r * (3 ±0)` - // Estimated: `6592 + r * (3 ±0)` - // Minimum execution time: 319_631_000 picoseconds. - Weight::from_parts(331_232_917, 0) - .saturating_add(Weight::from_parts(0, 6592)) - // Standard Error: 424 - .saturating_add(Weight::from_parts(167_252, 0).saturating_mul(r.into())) + // Measured: `621 + r * (3 ±0)` + // Estimated: `6561 + r * (3 ±0)` + // Minimum execution time: 320_598_000 picoseconds. + Weight::from_parts(331_853_036, 0) + .saturating_add(Weight::from_parts(0, 6561)) + // Standard Error: 345 + .saturating_add(Weight::from_parts(169_677, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -602,7 +613,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -614,13 +625,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_address(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `766 + r * (6 ±0)` - // Estimated: `6708 + r * (6 ±0)` - // Minimum execution time: 335_175_000 picoseconds. - Weight::from_parts(348_092_351, 0) - .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 461 - .saturating_add(Weight::from_parts(341_001, 0).saturating_mul(r.into())) + // Measured: `735 + r * (6 ±0)` + // Estimated: `6675 + r * (6 ±0)` + // Minimum execution time: 332_052_000 picoseconds. + Weight::from_parts(344_201_052, 0) + .saturating_add(Weight::from_parts(0, 6675)) + // Standard Error: 452 + .saturating_add(Weight::from_parts(362_353, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -630,7 +641,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -642,13 +653,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_gas_left(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `762 + r * (6 ±0)` - // Estimated: `6703 + r * (6 ±0)` - // Minimum execution time: 337_593_000 picoseconds. - Weight::from_parts(346_233_477, 0) - .saturating_add(Weight::from_parts(0, 6703)) - // Standard Error: 520 - .saturating_add(Weight::from_parts(388_240, 0).saturating_mul(r.into())) + // Measured: `731 + r * (6 ±0)` + // Estimated: `6674 + r * (6 ±0)` + // Minimum execution time: 333_582_000 picoseconds. + Weight::from_parts(342_220_412, 0) + .saturating_add(Weight::from_parts(0, 6674)) + // Standard Error: 539 + .saturating_add(Weight::from_parts(398_532, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -658,7 +669,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:2 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -670,13 +681,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_balance(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `869 + r * (6 ±0)` - // Estimated: `6810 + r * (6 ±0)` - // Minimum execution time: 335_724_000 picoseconds. - Weight::from_parts(377_674_207, 0) - .saturating_add(Weight::from_parts(0, 6810)) - // Standard Error: 3_114 - .saturating_add(Weight::from_parts(1_551_392, 0).saturating_mul(r.into())) + // Measured: `838 + r * (6 ±0)` + // Estimated: `6780 + r * (6 ±0)` + // Minimum execution time: 333_294_000 picoseconds. + Weight::from_parts(355_238_123, 0) + .saturating_add(Weight::from_parts(0, 6780)) + // Standard Error: 1_412 + .saturating_add(Weight::from_parts(1_577_479, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -686,7 +697,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -698,13 +709,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_value_transferred(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `776 + r * (6 ±0)` - // Estimated: `6725 + r * (6 ±0)` - // Minimum execution time: 339_158_000 picoseconds. - Weight::from_parts(342_771_188, 0) - .saturating_add(Weight::from_parts(0, 6725)) - // Standard Error: 498 - .saturating_add(Weight::from_parts(346_790, 0).saturating_mul(r.into())) + // Measured: `745 + r * (6 ±0)` + // Estimated: `6691 + r * (6 ±0)` + // Minimum execution time: 333_101_000 picoseconds. + Weight::from_parts(342_536_296, 0) + .saturating_add(Weight::from_parts(0, 6691)) + // Standard Error: 392 + .saturating_add(Weight::from_parts(357_698, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -714,7 +725,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -726,13 +737,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_minimum_balance(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `774 + r * (6 ±0)` - // Estimated: `6723 + r * (6 ±0)` - // Minimum execution time: 337_052_000 picoseconds. - Weight::from_parts(347_436_407, 0) - .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 521 - .saturating_add(Weight::from_parts(338_187, 0).saturating_mul(r.into())) + // Measured: `743 + r * (6 ±0)` + // Estimated: `6684 + r * (6 ±0)` + // Minimum execution time: 332_907_000 picoseconds. + Weight::from_parts(343_879_148, 0) + .saturating_add(Weight::from_parts(0, 6684)) + // Standard Error: 534 + .saturating_add(Weight::from_parts(360_978, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -742,7 +753,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -754,13 +765,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_block_number(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `771 + r * (6 ±0)` - // Estimated: `6721 + r * (6 ±0)` - // Minimum execution time: 336_378_000 picoseconds. - Weight::from_parts(345_941_816, 0) - .saturating_add(Weight::from_parts(0, 6721)) - // Standard Error: 427 - .saturating_add(Weight::from_parts(336_788, 0).saturating_mul(r.into())) + // Measured: `740 + r * (6 ±0)` + // Estimated: `6687 + r * (6 ±0)` + // Minimum execution time: 335_421_000 picoseconds. + Weight::from_parts(346_343_341, 0) + .saturating_add(Weight::from_parts(0, 6687)) + // Standard Error: 471 + .saturating_add(Weight::from_parts(356_022, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -770,7 +781,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -782,13 +793,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_now(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `762 + r * (6 ±0)` - // Estimated: `6707 + r * (6 ±0)` - // Minimum execution time: 335_244_000 picoseconds. - Weight::from_parts(345_002_383, 0) - .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 567 - .saturating_add(Weight::from_parts(345_505, 0).saturating_mul(r.into())) + // Measured: `731 + r * (6 ±0)` + // Estimated: `6672 + r * (6 ±0)` + // Minimum execution time: 332_523_000 picoseconds. + Weight::from_parts(343_803_576, 0) + .saturating_add(Weight::from_parts(0, 6672)) + // Standard Error: 568 + .saturating_add(Weight::from_parts(361_802, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -798,7 +809,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -812,13 +823,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_weight_to_fee(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `773 + r * (14 ±0)` - // Estimated: `6710 + r * (14 ±0)` - // Minimum execution time: 335_757_000 picoseconds. - Weight::from_parts(346_981_319, 0) - .saturating_add(Weight::from_parts(0, 6710)) - // Standard Error: 746 - .saturating_add(Weight::from_parts(1_610_993, 0).saturating_mul(r.into())) + // Measured: `805 + r * (14 ±0)` + // Estimated: `6740 + r * (14 ±0)` + // Minimum execution time: 334_800_000 picoseconds. + Weight::from_parts(358_957_715, 0) + .saturating_add(Weight::from_parts(0, 6740)) + // Standard Error: 736 + .saturating_add(Weight::from_parts(1_703_559, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 14).saturating_mul(r.into())) @@ -828,7 +839,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -840,13 +851,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_input(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `764 + r * (6 ±0)` - // Estimated: `6708 + r * (6 ±0)` - // Minimum execution time: 333_650_000 picoseconds. - Weight::from_parts(347_131_037, 0) - .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 466 - .saturating_add(Weight::from_parts(286_382, 0).saturating_mul(r.into())) + // Measured: `733 + r * (6 ±0)` + // Estimated: `6675 + r * (6 ±0)` + // Minimum execution time: 330_307_000 picoseconds. + Weight::from_parts(340_383_550, 0) + .saturating_add(Weight::from_parts(0, 6675)) + // Standard Error: 461 + .saturating_add(Weight::from_parts(297_906, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -856,7 +867,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -868,13 +879,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_input_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `768` - // Estimated: `6708` - // Minimum execution time: 333_590_000 picoseconds. - Weight::from_parts(286_249_256, 0) - .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 22 - .saturating_add(Weight::from_parts(1_111, 0).saturating_mul(n.into())) + // Measured: `737` + // Estimated: `6677` + // Minimum execution time: 335_017_000 picoseconds. + Weight::from_parts(290_908_395, 0) + .saturating_add(Weight::from_parts(0, 6677)) + // Standard Error: 23 + .saturating_add(Weight::from_parts(1_049, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -883,7 +894,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -895,13 +906,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1]`. fn seal_return(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `752 + r * (45 ±0)` - // Estimated: `6692 + r * (45 ±0)` - // Minimum execution time: 327_116_000 picoseconds. - Weight::from_parts(337_874_004, 0) - .saturating_add(Weight::from_parts(0, 6692)) - // Standard Error: 761_295 - .saturating_add(Weight::from_parts(6_034_295, 0).saturating_mul(r.into())) + // Measured: `721 + r * (45 ±0)` + // Estimated: `6661 + r * (45 ±0)` + // Minimum execution time: 325_404_000 picoseconds. + Weight::from_parts(335_308_924, 0) + .saturating_add(Weight::from_parts(0, 6661)) + // Standard Error: 792_216 + .saturating_add(Weight::from_parts(3_235_975, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 45).saturating_mul(r.into())) @@ -911,7 +922,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -923,23 +934,23 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_return_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `762` - // Estimated: `6715` - // Minimum execution time: 333_831_000 picoseconds. - Weight::from_parts(340_573_321, 0) - .saturating_add(Weight::from_parts(0, 6715)) + // Measured: `731` + // Estimated: `6678` + // Minimum execution time: 332_565_000 picoseconds. + Weight::from_parts(339_137_254, 0) + .saturating_add(Weight::from_parts(0, 6678)) // Standard Error: 0 - .saturating_add(Weight::from_parts(452, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(378, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) - /// Storage: `System::Account` (r:4 w:4) + /// Storage: `System::Account` (r:3 w:3) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) - /// Storage: `Contracts::CodeInfoOf` (r:1 w:1) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) + /// Storage: `Contracts::CodeInfoOf` (r:2 w:2) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) /// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`) @@ -947,32 +958,34 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) /// Storage: `Contracts::DeletionQueueCounter` (r:1 w:1) /// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) - /// Storage: `System::EventTopics` (r:3 w:3) + /// Storage: `System::EventTopics` (r:4 w:4) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Balances::Holds` (r:1 w:1) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// Storage: `Contracts::DeletionQueue` (r:0 w:1) /// Proof: `Contracts::DeletionQueue` (`max_values`: None, `max_size`: Some(142), added: 2617, mode: `Measured`) /// The range of component `r` is `[0, 1]`. fn seal_terminate(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `794 + r * (249 ±0)` - // Estimated: `6734 + r * (7674 ±0)` - // Minimum execution time: 331_663_000 picoseconds. - Weight::from_parts(343_301_161, 0) - .saturating_add(Weight::from_parts(0, 6734)) - // Standard Error: 889_552 - .saturating_add(Weight::from_parts(122_381_938, 0).saturating_mul(r.into())) + // Measured: `2840 + r * (263 ±0)` + // Estimated: `8780 + r * (5213 ±0)` + // Minimum execution time: 351_110_000 picoseconds. + Weight::from_parts(364_148_616, 0) + .saturating_add(Weight::from_parts(0, 8780)) + // Standard Error: 883_470 + .saturating_add(Weight::from_parts(119_523_583, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) - .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(r.into()))) + .saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) - .saturating_add(T::DbWeight::get().writes((8_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_parts(0, 7674).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().writes((10_u64).saturating_mul(r.into()))) + .saturating_add(Weight::from_parts(0, 5213).saturating_mul(r.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -986,13 +999,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_random(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `773 + r * (10 ±0)` - // Estimated: `6719 + r * (10 ±0)` - // Minimum execution time: 334_161_000 picoseconds. - Weight::from_parts(353_291_577, 0) - .saturating_add(Weight::from_parts(0, 6719)) - // Standard Error: 1_098 - .saturating_add(Weight::from_parts(1_826_451, 0).saturating_mul(r.into())) + // Measured: `742 + r * (10 ±0)` + // Estimated: `6688 + r * (10 ±0)` + // Minimum execution time: 333_963_000 picoseconds. + Weight::from_parts(347_649_073, 0) + .saturating_add(Weight::from_parts(0, 6688)) + // Standard Error: 1_708 + .saturating_add(Weight::from_parts(1_876_794, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -1002,7 +1015,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1014,13 +1027,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_deposit_event(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `762 + r * (10 ±0)` - // Estimated: `6707 + r * (10 ±0)` - // Minimum execution time: 332_949_000 picoseconds. - Weight::from_parts(352_805_387, 0) - .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 2_829 - .saturating_add(Weight::from_parts(4_282_507, 0).saturating_mul(r.into())) + // Measured: `731 + r * (10 ±0)` + // Estimated: `6673 + r * (10 ±0)` + // Minimum execution time: 329_255_000 picoseconds. + Weight::from_parts(350_338_574, 0) + .saturating_add(Weight::from_parts(0, 6673)) + // Standard Error: 1_449 + .saturating_add(Weight::from_parts(3_745_614, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -1030,7 +1043,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1043,15 +1056,15 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_deposit_event_per_topic_and_byte(t: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `781 + t * (32 ±0)` - // Estimated: `6728 + t * (2508 ±0)` - // Minimum execution time: 353_584_000 picoseconds. - Weight::from_parts(347_474_501, 0) - .saturating_add(Weight::from_parts(0, 6728)) - // Standard Error: 96_454 - .saturating_add(Weight::from_parts(2_870_159, 0).saturating_mul(t.into())) - // Standard Error: 26 - .saturating_add(Weight::from_parts(1_006, 0).saturating_mul(n.into())) + // Measured: `748 + t * (32 ±0)` + // Estimated: `6693 + t * (2508 ±0)` + // Minimum execution time: 347_878_000 picoseconds. + Weight::from_parts(344_297_846, 0) + .saturating_add(Weight::from_parts(0, 6693)) + // Standard Error: 87_600 + .saturating_add(Weight::from_parts(3_105_008, 0).saturating_mul(t.into())) + // Standard Error: 24 + .saturating_add(Weight::from_parts(1_003, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1063,7 +1076,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1075,13 +1088,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_debug_message(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `761 + r * (7 ±0)` - // Estimated: `6705 + r * (7 ±0)` - // Minimum execution time: 170_030_000 picoseconds. - Weight::from_parts(179_956_686, 0) - .saturating_add(Weight::from_parts(0, 6705)) - // Standard Error: 466 - .saturating_add(Weight::from_parts(243_858, 0).saturating_mul(r.into())) + // Measured: `730 + r * (7 ±0)` + // Estimated: `6675 + r * (7 ±0)` + // Minimum execution time: 170_477_000 picoseconds. + Weight::from_parts(182_965_287, 0) + .saturating_add(Weight::from_parts(0, 6675)) + // Standard Error: 358 + .saturating_add(Weight::from_parts(252_468, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 7).saturating_mul(r.into())) @@ -1091,7 +1104,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `MaxEncodedLen`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `MaxEncodedLen`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1103,13 +1116,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `i` is `[0, 1048576]`. fn seal_debug_message_per_byte(i: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `125712` - // Estimated: `131654` - // Minimum execution time: 499_701_000 picoseconds. - Weight::from_parts(473_122_597, 0) - .saturating_add(Weight::from_parts(0, 131654)) - // Standard Error: 13 - .saturating_add(Weight::from_parts(1_148, 0).saturating_mul(i.into())) + // Measured: `125681` + // Estimated: `131623` + // Minimum execution time: 497_536_000 picoseconds. + Weight::from_parts(470_766_773, 0) + .saturating_add(Weight::from_parts(0, 131623)) + // Standard Error: 12 + .saturating_add(Weight::from_parts(1_087, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1118,13 +1131,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_set_storage(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `834 + r * (292 ±0)` - // Estimated: `832 + r * (293 ±0)` - // Minimum execution time: 332_397_000 picoseconds. - Weight::from_parts(228_011_803, 0) - .saturating_add(Weight::from_parts(0, 832)) - // Standard Error: 11_094 - .saturating_add(Weight::from_parts(6_639_754, 0).saturating_mul(r.into())) + // Measured: `796 + r * (292 ±0)` + // Estimated: `799 + r * (293 ±0)` + // Minimum execution time: 332_615_000 picoseconds. + Weight::from_parts(249_673_352, 0) + .saturating_add(Weight::from_parts(0, 799)) + // Standard Error: 9_183 + .saturating_add(Weight::from_parts(6_515_487, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1136,28 +1149,28 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_set_storage_per_new_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1257` - // Estimated: `1249` - // Minimum execution time: 353_821_000 picoseconds. - Weight::from_parts(398_082_350, 0) - .saturating_add(Weight::from_parts(0, 1249)) - // Standard Error: 59 - .saturating_add(Weight::from_parts(756, 0).saturating_mul(n.into())) - .saturating_add(T::DbWeight::get().reads(10)) - .saturating_add(T::DbWeight::get().writes(6)) + // Measured: `1281` + // Estimated: `1279` + // Minimum execution time: 353_316_000 picoseconds. + Weight::from_parts(405_497_759, 0) + .saturating_add(Weight::from_parts(0, 1279)) + // Standard Error: 72 + .saturating_add(Weight::from_parts(705, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(12)) + .saturating_add(T::DbWeight::get().writes(8)) } /// Storage: `Skipped::Metadata` (r:0 w:0) /// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[0, 16384]`. fn seal_set_storage_per_old_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1157 + n * (1 ±0)` - // Estimated: `1157 + n * (1 ±0)` - // Minimum execution time: 352_814_000 picoseconds. - Weight::from_parts(363_627_141, 0) - .saturating_add(Weight::from_parts(0, 1157)) - // Standard Error: 30 - .saturating_add(Weight::from_parts(325, 0).saturating_mul(n.into())) + // Measured: `1126 + n * (1 ±0)` + // Estimated: `1126 + n * (1 ±0)` + // Minimum execution time: 352_409_000 picoseconds. + Weight::from_parts(362_785_128, 0) + .saturating_add(Weight::from_parts(0, 1126)) + // Standard Error: 31 + .saturating_add(Weight::from_parts(357, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1167,13 +1180,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_clear_storage(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `831 + r * (288 ±0)` - // Estimated: `835 + r * (289 ±0)` - // Minimum execution time: 333_168_000 picoseconds. - Weight::from_parts(234_350_762, 0) - .saturating_add(Weight::from_parts(0, 835)) - // Standard Error: 10_434 - .saturating_add(Weight::from_parts(6_539_719, 0).saturating_mul(r.into())) + // Measured: `794 + r * (288 ±0)` + // Estimated: `799 + r * (289 ±0)` + // Minimum execution time: 331_647_000 picoseconds. + Weight::from_parts(253_025_234, 0) + .saturating_add(Weight::from_parts(0, 799)) + // Standard Error: 9_009 + .saturating_add(Weight::from_parts(6_375_883, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1185,13 +1198,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_clear_storage_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1153 + n * (1 ±0)` - // Estimated: `1153 + n * (1 ±0)` - // Minimum execution time: 354_092_000 picoseconds. - Weight::from_parts(365_875_495, 0) - .saturating_add(Weight::from_parts(0, 1153)) - // Standard Error: 37 - .saturating_add(Weight::from_parts(286, 0).saturating_mul(n.into())) + // Measured: `1122 + n * (1 ±0)` + // Estimated: `1122 + n * (1 ±0)` + // Minimum execution time: 352_917_000 picoseconds. + Weight::from_parts(362_317_895, 0) + .saturating_add(Weight::from_parts(0, 1122)) + // Standard Error: 32 + .saturating_add(Weight::from_parts(198, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1201,13 +1214,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_get_storage(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `825 + r * (296 ±0)` - // Estimated: `829 + r * (297 ±0)` - // Minimum execution time: 340_449_000 picoseconds. - Weight::from_parts(260_454_540, 0) - .saturating_add(Weight::from_parts(0, 829)) - // Standard Error: 9_129 - .saturating_add(Weight::from_parts(5_521_911, 0).saturating_mul(r.into())) + // Measured: `794 + r * (296 ±0)` + // Estimated: `796 + r * (297 ±0)` + // Minimum execution time: 332_761_000 picoseconds. + Weight::from_parts(272_063_683, 0) + .saturating_add(Weight::from_parts(0, 796)) + // Standard Error: 7_296 + .saturating_add(Weight::from_parts(5_380_072, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1218,13 +1231,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_get_storage_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1169 + n * (1 ±0)` - // Estimated: `1169 + n * (1 ±0)` - // Minimum execution time: 354_257_000 picoseconds. - Weight::from_parts(367_021_765, 0) - .saturating_add(Weight::from_parts(0, 1169)) - // Standard Error: 38 - .saturating_add(Weight::from_parts(623, 0).saturating_mul(n.into())) + // Measured: `1138 + n * (1 ±0)` + // Estimated: `1138 + n * (1 ±0)` + // Minimum execution time: 351_246_000 picoseconds. + Weight::from_parts(362_328_924, 0) + .saturating_add(Weight::from_parts(0, 1138)) + // Standard Error: 30 + .saturating_add(Weight::from_parts(840, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1234,13 +1247,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_contains_storage(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `845 + r * (288 ±0)` - // Estimated: `847 + r * (289 ±0)` - // Minimum execution time: 334_019_000 picoseconds. - Weight::from_parts(254_049_214, 0) - .saturating_add(Weight::from_parts(0, 847)) - // Standard Error: 8_846 - .saturating_add(Weight::from_parts(5_336_074, 0).saturating_mul(r.into())) + // Measured: `805 + r * (288 ±0)` + // Estimated: `802 + r * (289 ±0)` + // Minimum execution time: 330_836_000 picoseconds. + Weight::from_parts(265_556_658, 0) + .saturating_add(Weight::from_parts(0, 802)) + // Standard Error: 7_536 + .saturating_add(Weight::from_parts(5_210_224, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1251,13 +1264,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_contains_storage_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1156 + n * (1 ±0)` - // Estimated: `1156 + n * (1 ±0)` - // Minimum execution time: 350_023_000 picoseconds. - Weight::from_parts(362_876_767, 0) - .saturating_add(Weight::from_parts(0, 1156)) - // Standard Error: 33 - .saturating_add(Weight::from_parts(310, 0).saturating_mul(n.into())) + // Measured: `1125 + n * (1 ±0)` + // Estimated: `1125 + n * (1 ±0)` + // Minimum execution time: 349_139_000 picoseconds. + Weight::from_parts(360_230_690, 0) + .saturating_add(Weight::from_parts(0, 1125)) + // Standard Error: 31 + .saturating_add(Weight::from_parts(101, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1267,13 +1280,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_take_storage(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `818 + r * (296 ±0)` - // Estimated: `826 + r * (297 ±0)` - // Minimum execution time: 338_311_000 picoseconds. - Weight::from_parts(225_281_461, 0) - .saturating_add(Weight::from_parts(0, 826)) - // Standard Error: 12_000 - .saturating_add(Weight::from_parts(6_716_883, 0).saturating_mul(r.into())) + // Measured: `787 + r * (296 ±0)` + // Estimated: `792 + r * (297 ±0)` + // Minimum execution time: 332_309_000 picoseconds. + Weight::from_parts(245_334_149, 0) + .saturating_add(Weight::from_parts(0, 792)) + // Standard Error: 9_205 + .saturating_add(Weight::from_parts(6_536_551, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1285,13 +1298,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 16384]`. fn seal_take_storage_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1170 + n * (1 ±0)` - // Estimated: `1170 + n * (1 ±0)` - // Minimum execution time: 358_835_000 picoseconds. - Weight::from_parts(367_501_822, 0) - .saturating_add(Weight::from_parts(0, 1170)) - // Standard Error: 34 - .saturating_add(Weight::from_parts(745, 0).saturating_mul(n.into())) + // Measured: `1139 + n * (1 ±0)` + // Estimated: `1139 + n * (1 ±0)` + // Minimum execution time: 351_981_000 picoseconds. + Weight::from_parts(362_084_997, 0) + .saturating_add(Weight::from_parts(0, 1139)) + // Standard Error: 28 + .saturating_add(Weight::from_parts(917, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1301,7 +1314,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1602 w:1601) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1313,13 +1326,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_transfer(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `881 + r * (45 ±0)` - // Estimated: `6837 + r * (2520 ±0)` - // Minimum execution time: 335_450_000 picoseconds. - Weight::from_parts(215_219_686, 0) - .saturating_add(Weight::from_parts(0, 6837)) - // Standard Error: 17_793 - .saturating_add(Weight::from_parts(37_821_458, 0).saturating_mul(r.into())) + // Measured: `766 + r * (45 ±0)` + // Estimated: `6764 + r * (2520 ±0)` + // Minimum execution time: 332_292_000 picoseconds. + Weight::from_parts(211_663_603, 0) + .saturating_add(Weight::from_parts(0, 6764)) + // Standard Error: 20_839 + .saturating_add(Weight::from_parts(36_857_094, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -1331,7 +1344,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:801 w:801) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:2 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:2 w:0) @@ -1343,25 +1356,25 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 800]`. fn seal_call(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1205 + r * (276 ±0)` - // Estimated: `9390 + r * (2752 ±0)` - // Minimum execution time: 335_880_000 picoseconds. - Weight::from_parts(338_190_000, 0) - .saturating_add(Weight::from_parts(0, 9390)) - // Standard Error: 124_901 - .saturating_add(Weight::from_parts(317_409_393, 0).saturating_mul(r.into())) + // Measured: `1128 + r * (245 ±0)` + // Estimated: `9308 + r * (2721 ±0)` + // Minimum execution time: 333_434_000 picoseconds. + Weight::from_parts(338_150_000, 0) + .saturating_add(Weight::from_parts(0, 9308)) + // Standard Error: 97_816 + .saturating_add(Weight::from_parts(310_093_178, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_parts(0, 2752).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 2721).saturating_mul(r.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:736 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:736 w:0) @@ -1374,12 +1387,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_delegate_call(r: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (576 ±0)` - // Estimated: `6711 + r * (2637 ±3)` - // Minimum execution time: 336_050_000 picoseconds. - Weight::from_parts(338_874_000, 0) - .saturating_add(Weight::from_parts(0, 6711)) - // Standard Error: 189_079 - .saturating_add(Weight::from_parts(317_133_680, 0).saturating_mul(r.into())) + // Estimated: `6680 + r * (2637 ±3)` + // Minimum execution time: 333_145_000 picoseconds. + Weight::from_parts(337_988_000, 0) + .saturating_add(Weight::from_parts(0, 6680)) + // Standard Error: 154_127 + .saturating_add(Weight::from_parts(309_190_603, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1391,7 +1404,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:3 w:2) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:2 w:2) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:2 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:2 w:0) @@ -1404,27 +1417,27 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `c` is `[0, 1048576]`. fn seal_call_per_transfer_clone_byte(t: u32, c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1237 + t * (277 ±0)` - // Estimated: `12127 + t * (5227 ±0)` - // Minimum execution time: 542_366_000 picoseconds. - Weight::from_parts(193_694_880, 0) - .saturating_add(Weight::from_parts(0, 12127)) - // Standard Error: 11_272_994 - .saturating_add(Weight::from_parts(316_201_122, 0).saturating_mul(t.into())) + // Measured: `1175 + t * (243 ±0)` + // Estimated: `12065 + t * (5193 ±0)` + // Minimum execution time: 535_291_000 picoseconds. + Weight::from_parts(152_665_787, 0) + .saturating_add(Weight::from_parts(0, 12065)) + // Standard Error: 11_389_799 + .saturating_add(Weight::from_parts(350_922_410, 0).saturating_mul(t.into())) // Standard Error: 16 - .saturating_add(Weight::from_parts(1_107, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_041, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(t.into()))) - .saturating_add(Weight::from_parts(0, 5227).saturating_mul(t.into())) + .saturating_add(Weight::from_parts(0, 5193).saturating_mul(t.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) - /// Storage: `System::Account` (r:1602 w:1602) + /// Storage: `System::Account` (r:802 w:802) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:801 w:801) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:801 w:800) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:801 w:0) @@ -1433,30 +1446,32 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) /// Storage: `Contracts::Nonce` (r:1 w:1) /// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) - /// Storage: `System::EventTopics` (r:802 w:802) + /// Storage: `System::EventTopics` (r:803 w:803) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Balances::Holds` (r:800 w:800) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// The range of component `r` is `[1, 800]`. fn seal_instantiate(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `898 + r * (255 ±0)` - // Estimated: `6726 + r * (5205 ±0)` - // Minimum execution time: 767_480_000 picoseconds. - Weight::from_parts(779_480_000, 0) - .saturating_add(Weight::from_parts(0, 6726)) - // Standard Error: 376_597 - .saturating_add(Weight::from_parts(465_783_966, 0).saturating_mul(r.into())) - .saturating_add(T::DbWeight::get().reads(10)) + // Measured: `917 + r * (255 ±0)` + // Estimated: `9195 + r * (2730 ±0)` + // Minimum execution time: 772_399_000 picoseconds. + Weight::from_parts(777_836_000, 0) + .saturating_add(Weight::from_parts(0, 9195)) + // Standard Error: 262_184 + .saturating_add(Weight::from_parts(435_113_013, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(r.into()))) - .saturating_add(T::DbWeight::get().writes(6)) + .saturating_add(T::DbWeight::get().writes(7)) .saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_parts(0, 5205).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 2730).saturating_mul(r.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) - /// Storage: `System::Account` (r:4 w:4) + /// Storage: `System::Account` (r:3 w:3) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:2 w:2) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:2 w:1) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:2 w:0) @@ -1465,36 +1480,38 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) /// Storage: `Contracts::Nonce` (r:1 w:1) /// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`) - /// Storage: `System::EventTopics` (r:3 w:3) + /// Storage: `System::EventTopics` (r:4 w:4) /// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Balances::Holds` (r:1 w:1) + /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `Measured`) /// The range of component `t` is `[0, 1]`. /// The range of component `i` is `[0, 983040]`. /// The range of component `s` is `[0, 983040]`. fn seal_instantiate_per_transfer_input_salt_byte(t: u32, i: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1094 + t * (118 ±0)` - // Estimated: `9510 + t * (2575 ±1)` - // Minimum execution time: 3_092_356_000 picoseconds. - Weight::from_parts(917_401_151, 0) - .saturating_add(Weight::from_parts(0, 9510)) - // Standard Error: 12_758_887 - .saturating_add(Weight::from_parts(50_052_819, 0).saturating_mul(t.into())) - // Standard Error: 20 - .saturating_add(Weight::from_parts(2_013, 0).saturating_mul(i.into())) - // Standard Error: 20 - .saturating_add(Weight::from_parts(2_252, 0).saturating_mul(s.into())) - .saturating_add(T::DbWeight::get().reads(15)) + // Measured: `1118 + t * (66 ±0)` + // Estimated: `12032 + t * (2553 ±1)` + // Minimum execution time: 3_022_078_000 picoseconds. + Weight::from_parts(672_904_292, 0) + .saturating_add(Weight::from_parts(0, 12032)) + // Standard Error: 6_402_950 + .saturating_add(Weight::from_parts(96_044_196, 0).saturating_mul(t.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_268, 0).saturating_mul(i.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_395, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(16)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) - .saturating_add(T::DbWeight::get().writes(10)) + .saturating_add(T::DbWeight::get().writes(11)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(t.into()))) - .saturating_add(Weight::from_parts(0, 2575).saturating_mul(t.into())) + .saturating_add(Weight::from_parts(0, 2553).saturating_mul(t.into())) } /// Storage: `Contracts::MigrationInProgress` (r:1 w:0) /// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`) /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1506,13 +1523,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_hash_sha2_256(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `761 + r * (8 ±0)` - // Estimated: `6702 + r * (8 ±0)` - // Minimum execution time: 334_710_000 picoseconds. - Weight::from_parts(340_587_159, 0) - .saturating_add(Weight::from_parts(0, 6702)) - // Standard Error: 507 - .saturating_add(Weight::from_parts(412_195, 0).saturating_mul(r.into())) + // Measured: `730 + r * (8 ±0)` + // Estimated: `6669 + r * (8 ±0)` + // Minimum execution time: 326_064_000 picoseconds. + Weight::from_parts(335_257_480, 0) + .saturating_add(Weight::from_parts(0, 6669)) + // Standard Error: 422 + .saturating_add(Weight::from_parts(414_436, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1522,7 +1539,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1534,13 +1551,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_hash_sha2_256_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `769` - // Estimated: `6709` - // Minimum execution time: 333_148_000 picoseconds. - Weight::from_parts(347_364_466, 0) - .saturating_add(Weight::from_parts(0, 6709)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_500, 0).saturating_mul(n.into())) + // Measured: `738` + // Estimated: `6676` + // Minimum execution time: 330_700_000 picoseconds. + Weight::from_parts(351_112_082, 0) + .saturating_add(Weight::from_parts(0, 6676)) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_400, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1549,7 +1566,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1561,13 +1578,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_hash_keccak_256(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `763 + r * (8 ±0)` - // Estimated: `6705 + r * (8 ±0)` - // Minimum execution time: 332_031_000 picoseconds. - Weight::from_parts(346_086_580, 0) - .saturating_add(Weight::from_parts(0, 6705)) - // Standard Error: 682 - .saturating_add(Weight::from_parts(822_438, 0).saturating_mul(r.into())) + // Measured: `732 + r * (8 ±0)` + // Estimated: `6674 + r * (8 ±0)` + // Minimum execution time: 327_163_000 picoseconds. + Weight::from_parts(341_709_806, 0) + .saturating_add(Weight::from_parts(0, 6674)) + // Standard Error: 510 + .saturating_add(Weight::from_parts(813_532, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1577,7 +1594,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1589,13 +1606,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_hash_keccak_256_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `771` - // Estimated: `6713` - // Minimum execution time: 337_280_000 picoseconds. - Weight::from_parts(346_817_478, 0) - .saturating_add(Weight::from_parts(0, 6713)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(3_859, 0).saturating_mul(n.into())) + // Measured: `740` + // Estimated: `6682` + // Minimum execution time: 330_249_000 picoseconds. + Weight::from_parts(360_373_719, 0) + .saturating_add(Weight::from_parts(0, 6682)) + // Standard Error: 1 + .saturating_add(Weight::from_parts(3_667, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1604,7 +1621,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1616,13 +1633,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_hash_blake2_256(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `763 + r * (8 ±0)` - // Estimated: `6708 + r * (8 ±0)` - // Minimum execution time: 331_039_000 picoseconds. - Weight::from_parts(344_490_096, 0) - .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 607 - .saturating_add(Weight::from_parts(478_090, 0).saturating_mul(r.into())) + // Measured: `732 + r * (8 ±0)` + // Estimated: `6676 + r * (8 ±0)` + // Minimum execution time: 330_380_000 picoseconds. + Weight::from_parts(339_242_365, 0) + .saturating_add(Weight::from_parts(0, 6676)) + // Standard Error: 487 + .saturating_add(Weight::from_parts(478_092, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1632,7 +1649,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1644,13 +1661,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_hash_blake2_256_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `771` - // Estimated: `6717` - // Minimum execution time: 334_726_000 picoseconds. - Weight::from_parts(360_301_792, 0) - .saturating_add(Weight::from_parts(0, 6717)) + // Measured: `740` + // Estimated: `6681` + // Minimum execution time: 333_128_000 picoseconds. + Weight::from_parts(356_675_399, 0) + .saturating_add(Weight::from_parts(0, 6681)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_597, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_521, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1659,7 +1676,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1671,13 +1688,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_hash_blake2_128(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `763 + r * (8 ±0)` - // Estimated: `6709 + r * (8 ±0)` - // Minimum execution time: 332_154_000 picoseconds. - Weight::from_parts(341_396_510, 0) - .saturating_add(Weight::from_parts(0, 6709)) - // Standard Error: 607 - .saturating_add(Weight::from_parts(477_412, 0).saturating_mul(r.into())) + // Measured: `732 + r * (8 ±0)` + // Estimated: `6673 + r * (8 ±0)` + // Minimum execution time: 326_885_000 picoseconds. + Weight::from_parts(337_517_499, 0) + .saturating_add(Weight::from_parts(0, 6673)) + // Standard Error: 424 + .saturating_add(Weight::from_parts(484_252, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1687,7 +1704,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1699,13 +1716,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 1048576]`. fn seal_hash_blake2_128_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `771` - // Estimated: `6711` - // Minimum execution time: 334_419_000 picoseconds. - Weight::from_parts(344_430_612, 0) - .saturating_add(Weight::from_parts(0, 6711)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_633, 0).saturating_mul(n.into())) + // Measured: `740` + // Estimated: `6679` + // Minimum execution time: 328_832_000 picoseconds. + Weight::from_parts(355_224_214, 0) + .saturating_add(Weight::from_parts(0, 6679)) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_519, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1714,7 +1731,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1726,13 +1743,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 125697]`. fn seal_sr25519_verify_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `896 + n * (1 ±0)` - // Estimated: `6833 + n * (1 ±0)` - // Minimum execution time: 407_667_000 picoseconds. - Weight::from_parts(420_437_289, 0) - .saturating_add(Weight::from_parts(0, 6833)) - // Standard Error: 20 - .saturating_add(Weight::from_parts(6_862, 0).saturating_mul(n.into())) + // Measured: `865 + n * (1 ±0)` + // Estimated: `6802 + n * (1 ±0)` + // Minimum execution time: 393_678_000 picoseconds. + Weight::from_parts(408_740_288, 0) + .saturating_add(Weight::from_parts(0, 6802)) + // Standard Error: 14 + .saturating_add(Weight::from_parts(6_299, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1742,7 +1759,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1754,13 +1771,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_sr25519_verify(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `710 + r * (112 ±0)` - // Estimated: `6650 + r * (112 ±0)` - // Minimum execution time: 334_964_000 picoseconds. - Weight::from_parts(391_169_401, 0) - .saturating_add(Weight::from_parts(0, 6650)) - // Standard Error: 15_050 - .saturating_add(Weight::from_parts(56_178_174, 0).saturating_mul(r.into())) + // Measured: `671 + r * (112 ±0)` + // Estimated: `6616 + r * (112 ±0)` + // Minimum execution time: 330_383_000 picoseconds. + Weight::from_parts(361_670_471, 0) + .saturating_add(Weight::from_parts(0, 6616)) + // Standard Error: 6_773 + .saturating_add(Weight::from_parts(55_843_885, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 112).saturating_mul(r.into())) @@ -1770,7 +1787,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1782,13 +1799,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_ecdsa_recover(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `805 + r * (76 ±0)` - // Estimated: `6701 + r * (77 ±0)` - // Minimum execution time: 334_512_000 picoseconds. - Weight::from_parts(423_250_649, 0) - .saturating_add(Weight::from_parts(0, 6701)) - // Standard Error: 21_999 - .saturating_add(Weight::from_parts(46_048_078, 0).saturating_mul(r.into())) + // Measured: `775 + r * (76 ±0)` + // Estimated: `6669 + r * (77 ±0)` + // Minimum execution time: 332_511_000 picoseconds. + Weight::from_parts(369_227_665, 0) + .saturating_add(Weight::from_parts(0, 6669)) + // Standard Error: 10_111 + .saturating_add(Weight::from_parts(45_924_372, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 77).saturating_mul(r.into())) @@ -1798,7 +1815,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1810,13 +1827,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_ecdsa_to_eth_address(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `776 + r * (42 ±0)` - // Estimated: `6715 + r * (42 ±0)` - // Minimum execution time: 339_500_000 picoseconds. - Weight::from_parts(367_540_513, 0) - .saturating_add(Weight::from_parts(0, 6715)) - // Standard Error: 12_975 - .saturating_add(Weight::from_parts(12_337_677, 0).saturating_mul(r.into())) + // Measured: `745 + r * (42 ±0)` + // Estimated: `6684 + r * (42 ±0)` + // Minimum execution time: 333_762_000 picoseconds. + Weight::from_parts(352_306_892, 0) + .saturating_add(Weight::from_parts(0, 6684)) + // Standard Error: 5_477 + .saturating_add(Weight::from_parts(11_870_388, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 42).saturating_mul(r.into())) @@ -1826,7 +1843,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1536 w:1536) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1536 w:0) @@ -1839,12 +1856,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_set_code_hash(r: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (965 ±0)` - // Estimated: `6706 + r * (3090 ±10)` - // Minimum execution time: 331_963_000 picoseconds. - Weight::from_parts(334_637_000, 0) - .saturating_add(Weight::from_parts(0, 6706)) - // Standard Error: 58_037 - .saturating_add(Weight::from_parts(25_483_667, 0).saturating_mul(r.into())) + // Estimated: `6675 + r * (3090 ±10)` + // Minimum execution time: 330_417_000 picoseconds. + Weight::from_parts(333_929_000, 0) + .saturating_add(Weight::from_parts(0, 6675)) + // Standard Error: 41_201 + .saturating_add(Weight::from_parts(24_399_063, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1868,15 +1885,16 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 32]`. fn add_delegate_dependency(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `928 + r * (131 ±0)` - // Estimated: `6878 + r * (2606 ±0)` - // Minimum execution time: 271_519_000 picoseconds. - Weight::from_parts(292_726_476, 6878) - // Standard Error: 23_870 - .saturating_add(Weight::from_parts(6_695_172, 0).saturating_mul(r.into())) - .saturating_add(T::DbWeight::get().reads(8_u64)) + // Measured: `796 + r * (131 ±0)` + // Estimated: `6746 + r * (2606 ±0)` + // Minimum execution time: 331_485_000 picoseconds. + Weight::from_parts(349_223_224, 0) + .saturating_add(Weight::from_parts(0, 6746)) + // Standard Error: 20_624 + .saturating_add(Weight::from_parts(6_351_042, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) - .saturating_add(T::DbWeight::get().writes(3_u64)) + .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(Weight::from_parts(0, 2606).saturating_mul(r.into())) } @@ -1897,15 +1915,16 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 32]`. fn remove_delegate_dependency(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `969 + r * (183 ±0)` + // Measured: `837 + r * (183 ±0)` // Estimated: `129453 + r * (2568 ±0)` - // Minimum execution time: 274_675_000 picoseconds. - Weight::from_parts(293_727_489, 129453) - // Standard Error: 23_160 - .saturating_add(Weight::from_parts(5_895_043, 0).saturating_mul(r.into())) - .saturating_add(T::DbWeight::get().reads(8_u64)) + // Minimum execution time: 332_604_000 picoseconds. + Weight::from_parts(350_970_090, 0) + .saturating_add(Weight::from_parts(0, 129453)) + // Standard Error: 24_712 + .saturating_add(Weight::from_parts(5_561_035, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) - .saturating_add(T::DbWeight::get().writes(3_u64)) + .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) .saturating_add(Weight::from_parts(0, 2568).saturating_mul(r.into())) } @@ -1914,7 +1933,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1926,13 +1945,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_reentrance_count(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `757 + r * (3 ±0)` - // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 330_506_000 picoseconds. - Weight::from_parts(341_361_580, 0) - .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 396 - .saturating_add(Weight::from_parts(179_927, 0).saturating_mul(r.into())) + // Measured: `726 + r * (3 ±0)` + // Estimated: `6672 + r * (3 ±0)` + // Minimum execution time: 328_697_000 picoseconds. + Weight::from_parts(339_756_674, 0) + .saturating_add(Weight::from_parts(0, 6672)) + // Standard Error: 338 + .saturating_add(Weight::from_parts(183_753, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -1942,7 +1961,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1954,13 +1973,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_account_reentrance_count(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1997 + r * (39 ±0)` - // Estimated: `7824 + r * (40 ±0)` - // Minimum execution time: 333_866_000 picoseconds. - Weight::from_parts(416_314_655, 0) - .saturating_add(Weight::from_parts(0, 7824)) - // Standard Error: 1_850 - .saturating_add(Weight::from_parts(326_703, 0).saturating_mul(r.into())) + // Measured: `1977 + r * (39 ±0)` + // Estimated: `7767 + r * (40 ±0)` + // Minimum execution time: 332_657_000 picoseconds. + Weight::from_parts(379_607_426, 0) + .saturating_add(Weight::from_parts(0, 7767)) + // Standard Error: 1_004 + .saturating_add(Weight::from_parts(274_472, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 40).saturating_mul(r.into())) @@ -1970,7 +1989,7 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:0) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`) /// Storage: `Contracts::ContractInfoOf` (r:1 w:1) - /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(290), added: 2765, mode: `Measured`) + /// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`) /// Storage: `Contracts::CodeInfoOf` (r:1 w:0) /// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`) /// Storage: `Contracts::PristineCode` (r:1 w:0) @@ -1984,13 +2003,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 1600]`. fn seal_instantiation_nonce(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `760 + r * (3 ±0)` - // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 331_367_000 picoseconds. - Weight::from_parts(344_844_447, 0) - .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 464 - .saturating_add(Weight::from_parts(156_183, 0).saturating_mul(r.into())) + // Measured: `729 + r * (3 ±0)` + // Estimated: `6669 + r * (3 ±0)` + // Minimum execution time: 328_693_000 picoseconds. + Weight::from_parts(342_815_135, 0) + .saturating_add(Weight::from_parts(0, 6669)) + // Standard Error: 344 + .saturating_add(Weight::from_parts(161_691, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -2000,10 +2019,10 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_551_000 picoseconds. - Weight::from_parts(1_718_159, 0) + // Minimum execution time: 1_730_000 picoseconds. + Weight::from_parts(2_362_680, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 12 - .saturating_add(Weight::from_parts(10_822, 0).saturating_mul(r.into())) + // Standard Error: 40 + .saturating_add(Weight::from_parts(10_843, 0).saturating_mul(r.into())) } } diff --git a/runtime/trappist/src/weights/pallet_democracy.rs b/runtime/trappist/src/weights/pallet_democracy.rs index d67a8bd9..1b42560a 100644 --- a/runtime/trappist/src/weights/pallet_democracy.rs +++ b/runtime/trappist/src/weights/pallet_democracy.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_democracy` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -62,8 +62,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4768` // Estimated: `18187` - // Minimum execution time: 47_005_000 picoseconds. - Weight::from_parts(48_979_000, 0) + // Minimum execution time: 44_536_000 picoseconds. + Weight::from_parts(45_703_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -74,8 +74,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3523` // Estimated: `6695` - // Minimum execution time: 40_672_000 picoseconds. - Weight::from_parts(42_019_000, 0) + // Minimum execution time: 37_837_000 picoseconds. + Weight::from_parts(39_041_000, 0) .saturating_add(Weight::from_parts(0, 6695)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3399` // Estimated: `7260` - // Minimum execution time: 55_300_000 picoseconds. - Weight::from_parts(56_217_000, 0) + // Minimum execution time: 52_994_000 picoseconds. + Weight::from_parts(55_670_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -110,8 +110,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3421` // Estimated: `7260` - // Minimum execution time: 60_458_000 picoseconds. - Weight::from_parts(62_203_000, 0) + // Minimum execution time: 58_542_000 picoseconds. + Weight::from_parts(60_007_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -126,8 +126,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `333` // Estimated: `3666` - // Minimum execution time: 26_807_000 picoseconds. - Weight::from_parts(27_603_000, 0) + // Minimum execution time: 25_648_000 picoseconds. + Weight::from_parts(26_305_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -150,8 +150,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6216` // Estimated: `18187` - // Minimum execution time: 114_847_000 picoseconds. - Weight::from_parts(120_482_000, 0) + // Minimum execution time: 109_983_000 picoseconds. + Weight::from_parts(111_527_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(8)) @@ -164,8 +164,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3383` // Estimated: `6703` - // Minimum execution time: 13_888_000 picoseconds. - Weight::from_parts(14_758_000, 0) + // Minimum execution time: 13_017_000 picoseconds. + Weight::from_parts(13_783_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -176,8 +176,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_551_000 picoseconds. - Weight::from_parts(3_721_000, 0) + // Minimum execution time: 2_817_000 picoseconds. + Weight::from_parts(3_030_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -187,8 +187,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_522_000 picoseconds. - Weight::from_parts(3_784_000, 0) + // Minimum execution time: 2_859_000 picoseconds. + Weight::from_parts(3_012_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -204,8 +204,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 28_342_000 picoseconds. - Weight::from_parts(28_718_000, 0) + // Minimum execution time: 26_839_000 picoseconds. + Weight::from_parts(27_609_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(5)) @@ -220,8 +220,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3486` // Estimated: `6703` - // Minimum execution time: 31_055_000 picoseconds. - Weight::from_parts(31_631_000, 0) + // Minimum execution time: 29_460_000 picoseconds. + Weight::from_parts(30_255_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -238,8 +238,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6127` // Estimated: `18187` - // Minimum execution time: 95_440_000 picoseconds. - Weight::from_parts(97_860_000, 0) + // Minimum execution time: 92_198_000 picoseconds. + Weight::from_parts(93_190_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -252,8 +252,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `238` // Estimated: `3518` - // Minimum execution time: 20_974_000 picoseconds. - Weight::from_parts(21_396_000, 0) + // Minimum execution time: 19_356_000 picoseconds. + Weight::from_parts(19_773_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -269,11 +269,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `1489 + r * (2676 ±0)` - // Minimum execution time: 7_237_000 picoseconds. - Weight::from_parts(6_156_933, 0) + // Minimum execution time: 7_423_000 picoseconds. + Weight::from_parts(8_128_432, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 9_431 - .saturating_add(Weight::from_parts(3_271_564, 0).saturating_mul(r.into())) + // Standard Error: 6_452 + .saturating_add(Weight::from_parts(3_133_741, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -296,11 +296,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `18187 + r * (2676 ±0)` - // Minimum execution time: 10_258_000 picoseconds. - Weight::from_parts(10_933_310, 0) + // Minimum execution time: 10_282_000 picoseconds. + Weight::from_parts(11_115_836, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 7_323 - .saturating_add(Weight::from_parts(3_264_995, 0).saturating_mul(r.into())) + // Standard Error: 6_317 + .saturating_add(Weight::from_parts(3_177_597, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -319,11 +319,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (108 ±0)` // Estimated: `19800 + r * (2676 ±0)` - // Minimum execution time: 40_764_000 picoseconds. - Weight::from_parts(45_574_416, 0) + // Minimum execution time: 39_184_000 picoseconds. + Weight::from_parts(44_966_513, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 8_197 - .saturating_add(Weight::from_parts(4_109_919, 0).saturating_mul(r.into())) + // Standard Error: 8_865 + .saturating_add(Weight::from_parts(4_048_901, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -339,11 +339,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `460 + r * (108 ±0)` // Estimated: `13530 + r * (2676 ±0)` - // Minimum execution time: 21_115_000 picoseconds. - Weight::from_parts(20_559_858, 0) + // Minimum execution time: 19_708_000 picoseconds. + Weight::from_parts(20_357_543, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 10_220 - .saturating_add(Weight::from_parts(4_081_975, 0).saturating_mul(r.into())) + // Standard Error: 6_470 + .saturating_add(Weight::from_parts(3_985_854, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -356,8 +356,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_450_000 picoseconds. - Weight::from_parts(3_615_000, 0) + // Minimum execution time: 3_012_000 picoseconds. + Weight::from_parts(3_149_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -374,11 +374,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `455` // Estimated: `7260` - // Minimum execution time: 22_997_000 picoseconds. - Weight::from_parts(37_892_852, 0) + // Minimum execution time: 22_333_000 picoseconds. + Weight::from_parts(36_801_929, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_983 - .saturating_add(Weight::from_parts(114_256, 0).saturating_mul(r.into())) + // Standard Error: 3_744 + .saturating_add(Weight::from_parts(110_843, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -395,11 +395,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `456 + r * (22 ±0)` // Estimated: `7260` - // Minimum execution time: 33_601_000 picoseconds. - Weight::from_parts(36_193_189, 0) + // Minimum execution time: 32_191_000 picoseconds. + Weight::from_parts(35_476_416, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_942 - .saturating_add(Weight::from_parts(151_434, 0).saturating_mul(r.into())) + // Standard Error: 2_065 + .saturating_add(Weight::from_parts(129_338, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -412,11 +412,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_485_000 picoseconds. - Weight::from_parts(18_825_687, 0) + // Minimum execution time: 15_003_000 picoseconds. + Weight::from_parts(18_127_140, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_755 - .saturating_add(Weight::from_parts(135_447, 0).saturating_mul(r.into())) + // Standard Error: 1_741 + .saturating_add(Weight::from_parts(121_912, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -429,11 +429,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_410_000 picoseconds. - Weight::from_parts(18_742_684, 0) + // Minimum execution time: 14_798_000 picoseconds. + Weight::from_parts(18_427_275, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_825 - .saturating_add(Weight::from_parts(132_147, 0).saturating_mul(r.into())) + // Standard Error: 1_865 + .saturating_add(Weight::from_parts(124_395, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -447,8 +447,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `323` // Estimated: `3556` - // Minimum execution time: 19_517_000 picoseconds. - Weight::from_parts(20_241_000, 0) + // Minimum execution time: 18_545_000 picoseconds. + Weight::from_parts(19_106_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -461,8 +461,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 17_949_000 picoseconds. - Weight::from_parts(18_490_000, 0) + // Minimum execution time: 16_650_000 picoseconds. + Weight::from_parts(17_152_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -477,8 +477,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4855` // Estimated: `18187` - // Minimum execution time: 42_858_000 picoseconds. - Weight::from_parts(44_298_000, 0) + // Minimum execution time: 42_065_000 picoseconds. + Weight::from_parts(43_161_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -491,8 +491,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4789` // Estimated: `18187` - // Minimum execution time: 39_594_000 picoseconds. - Weight::from_parts(40_593_000, 0) + // Minimum execution time: 39_436_000 picoseconds. + Weight::from_parts(40_254_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -505,8 +505,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 15_550_000 picoseconds. - Weight::from_parts(16_042_000, 0) + // Minimum execution time: 14_381_000 picoseconds. + Weight::from_parts(14_862_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -519,8 +519,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3666` - // Minimum execution time: 19_347_000 picoseconds. - Weight::from_parts(19_863_000, 0) + // Minimum execution time: 18_411_000 picoseconds. + Weight::from_parts(18_866_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_dex.rs b/runtime/trappist/src/weights/pallet_dex.rs index f9e0bb4e..8a6aa028 100644 --- a/runtime/trappist/src/weights/pallet_dex.rs +++ b/runtime/trappist/src/weights/pallet_dex.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_dex` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -62,8 +62,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `464` // Estimated: `8817` - // Minimum execution time: 127_123_000 picoseconds. - Weight::from_parts(129_794_000, 0) + // Minimum execution time: 121_318_000 picoseconds. + Weight::from_parts(124_040_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -80,8 +80,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 117_861_000 picoseconds. - Weight::from_parts(119_506_000, 0) + // Minimum execution time: 114_740_000 picoseconds. + Weight::from_parts(116_812_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -98,8 +98,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 125_560_000 picoseconds. - Weight::from_parts(127_746_000, 0) + // Minimum execution time: 120_522_000 picoseconds. + Weight::from_parts(123_925_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -116,8 +116,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 95_637_000 picoseconds. - Weight::from_parts(97_138_000, 0) + // Minimum execution time: 92_229_000 picoseconds. + Weight::from_parts(94_137_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -134,8 +134,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 96_464_000 picoseconds. - Weight::from_parts(98_497_000, 0) + // Minimum execution time: 94_161_000 picoseconds. + Weight::from_parts(95_745_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -150,8 +150,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1217` // Estimated: `11426` - // Minimum execution time: 109_353_000 picoseconds. - Weight::from_parts(111_832_000, 0) + // Minimum execution time: 103_406_000 picoseconds. + Weight::from_parts(106_595_000, 0) .saturating_add(Weight::from_parts(0, 11426)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(8)) diff --git a/runtime/trappist/src/weights/pallet_identity.rs b/runtime/trappist/src/weights/pallet_identity.rs index b92df588..2f9fd24c 100644 --- a/runtime/trappist/src/weights/pallet_identity.rs +++ b/runtime/trappist/src/weights/pallet_identity.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_identity` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -57,11 +57,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `32 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 12_736_000 picoseconds. - Weight::from_parts(13_316_170, 0) + // Minimum execution time: 11_682_000 picoseconds. + Weight::from_parts(12_716_438, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_725 - .saturating_add(Weight::from_parts(99_221, 0).saturating_mul(r.into())) + // Standard Error: 1_729 + .saturating_add(Weight::from_parts(78_935, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -73,13 +73,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `442 + r * (5 ±0)` // Estimated: `11003` - // Minimum execution time: 32_875_000 picoseconds. - Weight::from_parts(31_414_212, 0) + // Minimum execution time: 32_311_000 picoseconds. + Weight::from_parts(30_854_780, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_232 - .saturating_add(Weight::from_parts(124_032, 0).saturating_mul(r.into())) - // Standard Error: 825 - .saturating_add(Weight::from_parts(430_071, 0).saturating_mul(x.into())) + // Standard Error: 3_093 + .saturating_add(Weight::from_parts(104_973, 0).saturating_mul(r.into())) + // Standard Error: 603 + .saturating_add(Weight::from_parts(484_901, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -94,11 +94,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `11003 + s * (2589 ±0)` - // Minimum execution time: 9_158_000 picoseconds. - Weight::from_parts(21_848_528, 0) + // Minimum execution time: 8_833_000 picoseconds. + Weight::from_parts(21_923_683, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 5_045 - .saturating_add(Weight::from_parts(3_176_151, 0).saturating_mul(s.into())) + // Standard Error: 4_146 + .saturating_add(Weight::from_parts(3_358_644, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -116,11 +116,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `194 + p * (32 ±0)` // Estimated: `11003` - // Minimum execution time: 9_082_000 picoseconds. - Weight::from_parts(22_627_126, 0) + // Minimum execution time: 8_870_000 picoseconds. + Weight::from_parts(22_514_062, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_221 - .saturating_add(Weight::from_parts(1_307_292, 0).saturating_mul(p.into())) + // Standard Error: 3_607 + .saturating_add(Weight::from_parts(1_354_350, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) @@ -138,15 +138,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `469 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 56_768_000 picoseconds. - Weight::from_parts(30_060_088, 0) + // Minimum execution time: 57_824_000 picoseconds. + Weight::from_parts(31_381_479, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 10_393 - .saturating_add(Weight::from_parts(285_623, 0).saturating_mul(r.into())) - // Standard Error: 2_029 - .saturating_add(Weight::from_parts(1_311_157, 0).saturating_mul(s.into())) - // Standard Error: 2_029 - .saturating_add(Weight::from_parts(254_195, 0).saturating_mul(x.into())) + // Standard Error: 9_230 + .saturating_add(Weight::from_parts(158_474, 0).saturating_mul(r.into())) + // Standard Error: 1_802 + .saturating_add(Weight::from_parts(1_311_177, 0).saturating_mul(s.into())) + // Standard Error: 1_802 + .saturating_add(Weight::from_parts(276_111, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -161,13 +161,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `367 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 32_359_000 picoseconds. - Weight::from_parts(31_577_909, 0) + // Minimum execution time: 32_571_000 picoseconds. + Weight::from_parts(30_845_345, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_614 - .saturating_add(Weight::from_parts(124_124, 0).saturating_mul(r.into())) - // Standard Error: 900 - .saturating_add(Weight::from_parts(459_541, 0).saturating_mul(x.into())) + // Standard Error: 4_379 + .saturating_add(Weight::from_parts(150_598, 0).saturating_mul(r.into())) + // Standard Error: 854 + .saturating_add(Weight::from_parts(529_865, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -179,13 +179,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `398 + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 29_892_000 picoseconds. - Weight::from_parts(29_493_300, 0) + // Minimum execution time: 28_834_000 picoseconds. + Weight::from_parts(29_080_385, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_967 - .saturating_add(Weight::from_parts(84_273, 0).saturating_mul(r.into())) - // Standard Error: 774 - .saturating_add(Weight::from_parts(465_893, 0).saturating_mul(x.into())) + // Standard Error: 3_255 + .saturating_add(Weight::from_parts(79_877, 0).saturating_mul(r.into())) + // Standard Error: 635 + .saturating_add(Weight::from_parts(500_679, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -196,11 +196,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_830_000 picoseconds. - Weight::from_parts(8_377_417, 0) + // Minimum execution time: 7_346_000 picoseconds. + Weight::from_parts(8_049_240, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_136 - .saturating_add(Weight::from_parts(74_641, 0).saturating_mul(r.into())) + // Standard Error: 1_321 + .saturating_add(Weight::from_parts(67_474, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -211,11 +211,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_045_000 picoseconds. - Weight::from_parts(7_538_770, 0) + // Minimum execution time: 6_795_000 picoseconds. + Weight::from_parts(7_238_558, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_002 - .saturating_add(Weight::from_parts(65_790, 0).saturating_mul(r.into())) + // Standard Error: 902 + .saturating_add(Weight::from_parts(65_687, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -226,11 +226,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 6_987_000 picoseconds. - Weight::from_parts(7_497_913, 0) + // Minimum execution time: 6_720_000 picoseconds. + Weight::from_parts(7_119_378, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_300 - .saturating_add(Weight::from_parts(68_887, 0).saturating_mul(r.into())) + // Standard Error: 948 + .saturating_add(Weight::from_parts(69_205, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -244,13 +244,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `445 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 23_110_000 picoseconds. - Weight::from_parts(21_891_472, 0) + // Minimum execution time: 22_787_000 picoseconds. + Weight::from_parts(21_181_337, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 5_047 - .saturating_add(Weight::from_parts(124_472, 0).saturating_mul(r.into())) - // Standard Error: 933 - .saturating_add(Weight::from_parts(738_830, 0).saturating_mul(x.into())) + // Standard Error: 3_911 + .saturating_add(Weight::from_parts(124_498, 0).saturating_mul(r.into())) + // Standard Error: 723 + .saturating_add(Weight::from_parts(791_944, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -269,15 +269,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `643 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 61_912_000 picoseconds. - Weight::from_parts(33_795_048, 0) + // Minimum execution time: 63_525_000 picoseconds. + Weight::from_parts(37_149_918, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 10_304 - .saturating_add(Weight::from_parts(280_504, 0).saturating_mul(r.into())) - // Standard Error: 2_012 - .saturating_add(Weight::from_parts(1_344_702, 0).saturating_mul(s.into())) - // Standard Error: 2_012 - .saturating_add(Weight::from_parts(266_002, 0).saturating_mul(x.into())) + // Standard Error: 9_206 + .saturating_add(Weight::from_parts(128_727, 0).saturating_mul(r.into())) + // Standard Error: 1_797 + .saturating_add(Weight::from_parts(1_334_401, 0).saturating_mul(s.into())) + // Standard Error: 1_797 + .saturating_add(Weight::from_parts(278_240, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -293,11 +293,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `475 + s * (36 ±0)` // Estimated: `11003` - // Minimum execution time: 28_628_000 picoseconds. - Weight::from_parts(32_780_557, 0) + // Minimum execution time: 28_828_000 picoseconds. + Weight::from_parts(32_701_140, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 1_340 - .saturating_add(Weight::from_parts(96_911, 0).saturating_mul(s.into())) + // Standard Error: 1_024 + .saturating_add(Weight::from_parts(91_421, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -310,11 +310,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `591 + s * (3 ±0)` // Estimated: `11003` - // Minimum execution time: 12_274_000 picoseconds. - Weight::from_parts(13_840_277, 0) + // Minimum execution time: 12_355_000 picoseconds. + Weight::from_parts(13_556_186, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 438 - .saturating_add(Weight::from_parts(39_885, 0).saturating_mul(s.into())) + // Standard Error: 412 + .saturating_add(Weight::from_parts(40_115, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -329,11 +329,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `638 + s * (35 ±0)` // Estimated: `11003` - // Minimum execution time: 32_780_000 picoseconds. - Weight::from_parts(35_279_030, 0) + // Minimum execution time: 32_300_000 picoseconds. + Weight::from_parts(34_279_894, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 804 - .saturating_add(Weight::from_parts(78_148, 0).saturating_mul(s.into())) + // Standard Error: 697 + .saturating_add(Weight::from_parts(83_669, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -348,11 +348,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `667 + s * (37 ±0)` // Estimated: `6723` - // Minimum execution time: 24_161_000 picoseconds. - Weight::from_parts(26_009_551, 0) + // Minimum execution time: 23_849_000 picoseconds. + Weight::from_parts(25_715_440, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 1_117 - .saturating_add(Weight::from_parts(89_067, 0).saturating_mul(s.into())) + // Standard Error: 761 + .saturating_add(Weight::from_parts(82_405, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_lockdown_mode.rs b/runtime/trappist/src/weights/pallet_lockdown_mode.rs index f43fd513..9dda707b 100644 --- a/runtime/trappist/src/weights/pallet_lockdown_mode.rs +++ b/runtime/trappist/src/weights/pallet_lockdown_mode.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_lockdown_mode` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -58,8 +58,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 14_309_000 picoseconds. - Weight::from_parts(14_739_000, 0) + // Minimum execution time: 13_278_000 picoseconds. + Weight::from_parts(13_751_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 14_146_000 picoseconds. - Weight::from_parts(14_589_000, 0) + // Minimum execution time: 13_302_000 picoseconds. + Weight::from_parts(13_714_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_multisig.rs b/runtime/trappist/src/weights/pallet_multisig.rs index ed2450e0..697af815 100644 --- a/runtime/trappist/src/weights/pallet_multisig.rs +++ b/runtime/trappist/src/weights/pallet_multisig.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -57,11 +57,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 18_627_000 picoseconds. - Weight::from_parts(19_438_336, 0) + // Minimum execution time: 18_686_000 picoseconds. + Weight::from_parts(19_390_869, 0) .saturating_add(Weight::from_parts(0, 1486)) // Standard Error: 4 - .saturating_add(Weight::from_parts(662, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(587, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Multisig::Multisigs` (r:1 w:1) @@ -72,13 +72,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `262 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 45_244_000 picoseconds. - Weight::from_parts(33_848_875, 0) + // Minimum execution time: 44_025_000 picoseconds. + Weight::from_parts(34_224_817, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 960 - .saturating_add(Weight::from_parts(131_936, 0).saturating_mul(s.into())) - // Standard Error: 9 - .saturating_add(Weight::from_parts(1_560, 0).saturating_mul(z.into())) + // Standard Error: 713 + .saturating_add(Weight::from_parts(119_184, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_482, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -90,13 +90,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 30_064_000 picoseconds. - Weight::from_parts(20_373_883, 0) + // Minimum execution time: 28_722_000 picoseconds. + Weight::from_parts(19_775_123, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 652 - .saturating_add(Weight::from_parts(107_082, 0).saturating_mul(s.into())) - // Standard Error: 6 - .saturating_add(Weight::from_parts(1_526, 0).saturating_mul(z.into())) + // Standard Error: 448 + .saturating_add(Weight::from_parts(103_379, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_498, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -112,13 +112,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `485 + s * (33 ±0)` // Estimated: `6811` - // Minimum execution time: 55_885_000 picoseconds. - Weight::from_parts(40_619_248, 0) + // Minimum execution time: 54_475_000 picoseconds. + Weight::from_parts(41_144_365, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_196 - .saturating_add(Weight::from_parts(169_881, 0).saturating_mul(s.into())) - // Standard Error: 11 - .saturating_add(Weight::from_parts(1_678, 0).saturating_mul(z.into())) + // Standard Error: 893 + .saturating_add(Weight::from_parts(152_166, 0).saturating_mul(s.into())) + // Standard Error: 8 + .saturating_add(Weight::from_parts(1_599, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -129,11 +129,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `263 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 32_475_000 picoseconds. - Weight::from_parts(32_822_991, 0) + // Minimum execution time: 32_145_000 picoseconds. + Weight::from_parts(32_647_517, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_021 - .saturating_add(Weight::from_parts(124_869, 0).saturating_mul(s.into())) + // Standard Error: 664 + .saturating_add(Weight::from_parts(116_713, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -144,11 +144,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 18_126_000 picoseconds. - Weight::from_parts(18_547_228, 0) + // Minimum execution time: 17_915_000 picoseconds. + Weight::from_parts(18_383_828, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 624 - .saturating_add(Weight::from_parts(107_773, 0).saturating_mul(s.into())) + // Standard Error: 494 + .saturating_add(Weight::from_parts(101_772, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -159,11 +159,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `454 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 33_096_000 picoseconds. - Weight::from_parts(33_611_091, 0) + // Minimum execution time: 33_683_000 picoseconds. + Weight::from_parts(34_039_815, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 858 - .saturating_add(Weight::from_parts(131_158, 0).saturating_mul(s.into())) + // Standard Error: 653 + .saturating_add(Weight::from_parts(118_073, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/trappist/src/weights/pallet_preimage.rs b/runtime/trappist/src/weights/pallet_preimage.rs index 6f3b4cb6..ce9078a6 100644 --- a/runtime/trappist/src/weights/pallet_preimage.rs +++ b/runtime/trappist/src/weights/pallet_preimage.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_preimage` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -59,11 +59,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `143` // Estimated: `3556` - // Minimum execution time: 30_625_000 picoseconds. - Weight::from_parts(31_002_000, 0) + // Minimum execution time: 28_800_000 picoseconds. + Weight::from_parts(29_094_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 6 - .saturating_add(Weight::from_parts(2_560, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(2_331, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,11 +76,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 17_809_000 picoseconds. - Weight::from_parts(18_037_000, 0) + // Minimum execution time: 16_348_000 picoseconds. + Weight::from_parts(64_916_806, 0) .saturating_add(Weight::from_parts(0, 3556)) // Standard Error: 5 - .saturating_add(Weight::from_parts(2_516, 0).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(2_281, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -93,11 +93,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 16_738_000 picoseconds. - Weight::from_parts(17_004_000, 0) + // Minimum execution time: 15_665_000 picoseconds. + Weight::from_parts(15_868_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 4 - .saturating_add(Weight::from_parts(2_530, 0).saturating_mul(s.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(2_359, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -109,8 +109,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `289` // Estimated: `3556` - // Minimum execution time: 56_184_000 picoseconds. - Weight::from_parts(60_363_000, 0) + // Minimum execution time: 38_581_000 picoseconds. + Weight::from_parts(40_856_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -123,8 +123,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 38_172_000 picoseconds. - Weight::from_parts(42_240_000, 0) + // Minimum execution time: 22_651_000 picoseconds. + Weight::from_parts(23_247_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -135,8 +135,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `188` // Estimated: `3556` - // Minimum execution time: 33_708_000 picoseconds. - Weight::from_parts(36_992_000, 0) + // Minimum execution time: 20_169_000 picoseconds. + Weight::from_parts(21_181_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -147,8 +147,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 20_306_000 picoseconds. - Weight::from_parts(23_418_000, 0) + // Minimum execution time: 13_384_000 picoseconds. + Weight::from_parts(13_856_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -159,8 +159,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 25_894_000 picoseconds. - Weight::from_parts(29_098_000, 0) + // Minimum execution time: 16_700_000 picoseconds. + Weight::from_parts(17_033_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -171,8 +171,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_009_000 picoseconds. - Weight::from_parts(12_523_000, 0) + // Minimum execution time: 9_475_000 picoseconds. + Weight::from_parts(9_891_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -185,8 +185,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 33_930_000 picoseconds. - Weight::from_parts(38_666_000, 0) + // Minimum execution time: 22_095_000 picoseconds. + Weight::from_parts(23_532_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -197,8 +197,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 10_220_000 picoseconds. - Weight::from_parts(11_490_000, 0) + // Minimum execution time: 9_531_000 picoseconds. + Weight::from_parts(9_827_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -209,8 +209,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_358_000 picoseconds. - Weight::from_parts(12_120_000, 0) + // Minimum execution time: 9_302_000 picoseconds. + Weight::from_parts(9_586_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_scheduler.rs b/runtime/trappist/src/weights/pallet_scheduler.rs index 7e87c796..6fad4877 100644 --- a/runtime/trappist/src/weights/pallet_scheduler.rs +++ b/runtime/trappist/src/weights/pallet_scheduler.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_scheduler` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -56,8 +56,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31` // Estimated: `1489` - // Minimum execution time: 3_357_000 picoseconds. - Weight::from_parts(3_501_000, 0) + // Minimum execution time: 3_404_000 picoseconds. + Weight::from_parts(3_564_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -69,11 +69,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 2_930_000 picoseconds. - Weight::from_parts(3_039_000, 0) + // Minimum execution time: 3_050_000 picoseconds. + Weight::from_parts(235_120, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 1_468 - .saturating_add(Weight::from_parts(998_525, 0).saturating_mul(s.into())) + // Standard Error: 2_148 + .saturating_add(Weight::from_parts(928_922, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -81,8 +81,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_043_000 picoseconds. - Weight::from_parts(6_262_000, 0) + // Minimum execution time: 5_510_000 picoseconds. + Weight::from_parts(5_705_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -94,11 +94,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 21_244_000 picoseconds. - Weight::from_parts(21_702_000, 0) + // Minimum execution time: 20_463_000 picoseconds. + Weight::from_parts(20_544_000, 0) .saturating_add(Weight::from_parts(0, 3644)) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_599, 0).saturating_mul(s.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(1_356, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -109,8 +109,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_512_000 picoseconds. - Weight::from_parts(7_726_000, 0) + // Minimum execution time: 6_758_000 picoseconds. + Weight::from_parts(7_128_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -118,8 +118,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_062_000 picoseconds. - Weight::from_parts(6_492_000, 0) + // Minimum execution time: 5_504_000 picoseconds. + Weight::from_parts(5_744_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -128,8 +128,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_207_000 picoseconds. - Weight::from_parts(7_467_000, 0) + // Minimum execution time: 6_408_000 picoseconds. + Weight::from_parts(6_561_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -137,8 +137,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_874_000 picoseconds. - Weight::from_parts(3_095_000, 0) + // Minimum execution time: 2_460_000 picoseconds. + Weight::from_parts(2_617_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -148,11 +148,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 12_546_000 picoseconds. - Weight::from_parts(13_862_907, 0) + // Minimum execution time: 12_243_000 picoseconds. + Weight::from_parts(11_321_982, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_462 - .saturating_add(Weight::from_parts(1_042_931, 0).saturating_mul(s.into())) + // Standard Error: 2_258 + .saturating_add(Weight::from_parts(944_337, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,11 +165,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 18_005_000 picoseconds. - Weight::from_parts(12_723_681, 0) + // Minimum execution time: 17_151_000 picoseconds. + Weight::from_parts(10_679_872, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_325 - .saturating_add(Weight::from_parts(1_789_789, 0).saturating_mul(s.into())) + // Standard Error: 2_501 + .saturating_add(Weight::from_parts(1_648_731, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -182,11 +182,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `596 + s * (178 ±0)` // Estimated: `402327` - // Minimum execution time: 15_855_000 picoseconds. - Weight::from_parts(18_571_980, 0) + // Minimum execution time: 15_411_000 picoseconds. + Weight::from_parts(16_936_208, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_388 - .saturating_add(Weight::from_parts(1_048_606, 0).saturating_mul(s.into())) + // Standard Error: 2_308 + .saturating_add(Weight::from_parts(949_432, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -199,11 +199,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `709 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 19_535_000 picoseconds. - Weight::from_parts(15_702_979, 0) + // Minimum execution time: 18_544_000 picoseconds. + Weight::from_parts(13_625_595, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_739 - .saturating_add(Weight::from_parts(1_795_809, 0).saturating_mul(s.into())) + // Standard Error: 2_535 + .saturating_add(Weight::from_parts(1_652_406, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_session.rs b/runtime/trappist/src/weights/pallet_session.rs index a85b30a1..e72b6f1b 100644 --- a/runtime/trappist/src/weights/pallet_session.rs +++ b/runtime/trappist/src/weights/pallet_session.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_session` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -58,8 +58,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `297` // Estimated: `3762` - // Minimum execution time: 15_718_000 picoseconds. - Weight::from_parts(16_378_000, 0) + // Minimum execution time: 15_632_000 picoseconds. + Weight::from_parts(16_475_000, 0) .saturating_add(Weight::from_parts(0, 3762)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `279` // Estimated: `3744` - // Minimum execution time: 11_214_000 picoseconds. - Weight::from_parts(11_751_000, 0) + // Minimum execution time: 10_932_000 picoseconds. + Weight::from_parts(11_673_000, 0) .saturating_add(Weight::from_parts(0, 3744)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_timestamp.rs b/runtime/trappist/src/weights/pallet_timestamp.rs index 2afd6d04..b728b8ba 100644 --- a/runtime/trappist/src/weights/pallet_timestamp.rs +++ b/runtime/trappist/src/weights/pallet_timestamp.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_timestamp` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -58,8 +58,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `190` // Estimated: `1493` - // Minimum execution time: 9_578_000 picoseconds. - Weight::from_parts(10_119_000, 0) + // Minimum execution time: 9_409_000 picoseconds. + Weight::from_parts(9_864_000, 0) .saturating_add(Weight::from_parts(0, 1493)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `128` // Estimated: `0` - // Minimum execution time: 4_737_000 picoseconds. - Weight::from_parts(4_904_000, 0) + // Minimum execution time: 4_595_000 picoseconds. + Weight::from_parts(4_799_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/pallet_treasury.rs b/runtime/trappist/src/weights/pallet_treasury.rs index 01fb7cae..e6711f34 100644 --- a/runtime/trappist/src/weights/pallet_treasury.rs +++ b/runtime/trappist/src/weights/pallet_treasury.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_treasury` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -54,8 +54,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 201_000 picoseconds. - Weight::from_parts(244_000, 0) + // Minimum execution time: 222_000 picoseconds. + Weight::from_parts(282_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Treasury::ProposalCount` (r:1 w:1) @@ -66,8 +66,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `107` // Estimated: `1489` - // Minimum execution time: 28_341_000 picoseconds. - Weight::from_parts(29_268_000, 0) + // Minimum execution time: 25_979_000 picoseconds. + Weight::from_parts(27_137_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -80,8 +80,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `368` // Estimated: `6196` - // Minimum execution time: 44_725_000 picoseconds. - Weight::from_parts(45_649_000, 0) + // Minimum execution time: 41_371_000 picoseconds. + Weight::from_parts(42_606_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -95,11 +95,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `433 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 9_377_000 picoseconds. - Weight::from_parts(11_727_768, 0) + // Minimum execution time: 8_749_000 picoseconds. + Weight::from_parts(11_159_903, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_077 - .saturating_add(Weight::from_parts(86_963, 0).saturating_mul(p.into())) + // Standard Error: 969 + .saturating_add(Weight::from_parts(79_017, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -109,8 +109,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `90` // Estimated: `1887` - // Minimum execution time: 6_718_000 picoseconds. - Weight::from_parts(7_024_000, 0) + // Minimum execution time: 6_318_000 picoseconds. + Weight::from_parts(6_440_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -130,11 +130,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + p * (251 ±0)` // Estimated: `3593 + p * (5206 ±0)` - // Minimum execution time: 31_019_000 picoseconds. - Weight::from_parts(26_871_822, 0) + // Minimum execution time: 27_971_000 picoseconds. + Weight::from_parts(32_166_729, 0) .saturating_add(Weight::from_parts(0, 3593)) - // Standard Error: 24_500 - .saturating_add(Weight::from_parts(43_675_486, 0).saturating_mul(p.into())) + // Standard Error: 17_341 + .saturating_add(Weight::from_parts(39_687_696, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_uniques.rs b/runtime/trappist/src/weights/pallet_uniques.rs index 0fa11010..dd40df64 100644 --- a/runtime/trappist/src/weights/pallet_uniques.rs +++ b/runtime/trappist/src/weights/pallet_uniques.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_uniques` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -58,8 +58,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179` // Estimated: `3643` - // Minimum execution time: 29_353_000 picoseconds. - Weight::from_parts(30_056_000, 0) + // Minimum execution time: 28_938_000 picoseconds. + Weight::from_parts(29_700_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3643` - // Minimum execution time: 15_060_000 picoseconds. - Weight::from_parts(15_569_000, 0) + // Minimum execution time: 14_474_000 picoseconds. + Weight::from_parts(14_998_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -83,13 +83,13 @@ impl pallet_uniques::WeightInfo for WeightInfo { /// Storage: `Uniques::Asset` (r:1001 w:1000) /// Proof: `Uniques::Asset` (`max_values`: None, `max_size`: Some(122), added: 2597, mode: `MaxEncodedLen`) /// Storage: `Uniques::InstanceMetadataOf` (r:1000 w:1000) - /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) + /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(187), added: 2662, mode: `MaxEncodedLen`) /// Storage: `Uniques::Attribute` (r:1000 w:1000) - /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(364), added: 2839, mode: `MaxEncodedLen`) + /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(172), added: 2647, mode: `MaxEncodedLen`) /// Storage: `Uniques::ClassAccount` (r:0 w:1) /// Proof: `Uniques::ClassAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) /// Storage: `Uniques::ClassMetadataOf` (r:0 w:1) - /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(167), added: 2642, mode: `MaxEncodedLen`) /// Storage: `Uniques::Account` (r:0 w:1000) /// Proof: `Uniques::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) /// Storage: `Uniques::CollectionMaxSupply` (r:0 w:1) @@ -100,16 +100,16 @@ impl pallet_uniques::WeightInfo for WeightInfo { fn destroy(n: u32, m: u32, a: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `327 + a * (107 ±0) + m * (56 ±0) + n * (76 ±0)` - // Estimated: `3643 + a * (2839 ±0) + m * (2583 ±0) + n * (2597 ±0)` - // Minimum execution time: 2_935_347_000 picoseconds. - Weight::from_parts(3_006_152_000, 0) + // Estimated: `3643 + a * (2647 ±0) + m * (2662 ±0) + n * (2597 ±0)` + // Minimum execution time: 2_694_836_000 picoseconds. + Weight::from_parts(2_722_173_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(7_448_090, 0).saturating_mul(n.into())) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(418_973, 0).saturating_mul(m.into())) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(527_328, 0).saturating_mul(a.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(7_029_745, 0).saturating_mul(n.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(310_212, 0).saturating_mul(m.into())) + // Standard Error: 26_684 + .saturating_add(Weight::from_parts(359_481, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(m.into()))) @@ -118,8 +118,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(m.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(a.into()))) - .saturating_add(Weight::from_parts(0, 2839).saturating_mul(a.into())) - .saturating_add(Weight::from_parts(0, 2583).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 2647).saturating_mul(a.into())) + .saturating_add(Weight::from_parts(0, 2662).saturating_mul(m.into())) .saturating_add(Weight::from_parts(0, 2597).saturating_mul(n.into())) } /// Storage: `Uniques::Asset` (r:1 w:1) @@ -134,8 +134,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 34_903_000 picoseconds. - Weight::from_parts(35_743_000, 0) + // Minimum execution time: 33_754_000 picoseconds. + Weight::from_parts(34_517_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -152,8 +152,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 36_679_000 picoseconds. - Weight::from_parts(37_722_000, 0) + // Minimum execution time: 36_771_000 picoseconds. + Weight::from_parts(37_512_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -170,8 +170,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 26_213_000 picoseconds. - Weight::from_parts(26_885_000, 0) + // Minimum execution time: 26_354_000 picoseconds. + Weight::from_parts(26_843_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -185,11 +185,11 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `772 + i * (76 ±0)` // Estimated: `3643 + i * (2597 ±0)` - // Minimum execution time: 14_082_000 picoseconds. - Weight::from_parts(14_406_000, 0) + // Minimum execution time: 13_457_000 picoseconds. + Weight::from_parts(13_605_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 20_171 - .saturating_add(Weight::from_parts(17_895_576, 0).saturating_mul(i.into())) + // Standard Error: 12_592 + .saturating_add(Weight::from_parts(17_022_998, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -204,8 +204,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 18_217_000 picoseconds. - Weight::from_parts(18_887_000, 0) + // Minimum execution time: 17_643_000 picoseconds. + Weight::from_parts(18_167_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -218,8 +218,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 17_985_000 picoseconds. - Weight::from_parts(18_483_000, 0) + // Minimum execution time: 17_608_000 picoseconds. + Weight::from_parts(17_901_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -230,8 +230,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_053_000 picoseconds. - Weight::from_parts(13_691_000, 0) + // Minimum execution time: 12_599_000 picoseconds. + Weight::from_parts(12_948_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_232_000 picoseconds. - Weight::from_parts(13_607_000, 0) + // Minimum execution time: 12_283_000 picoseconds. + Weight::from_parts(12_668_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -258,8 +258,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `3643` - // Minimum execution time: 21_208_000 picoseconds. - Weight::from_parts(21_829_000, 0) + // Minimum execution time: 20_789_000 picoseconds. + Weight::from_parts(21_342_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -270,8 +270,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_346_000 picoseconds. - Weight::from_parts(13_801_000, 0) + // Minimum execution time: 12_764_000 picoseconds. + Weight::from_parts(13_048_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -284,8 +284,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 16_861_000 picoseconds. - Weight::from_parts(17_309_000, 0) + // Minimum execution time: 15_760_000 picoseconds. + Weight::from_parts(16_338_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -293,73 +293,73 @@ impl pallet_uniques::WeightInfo for WeightInfo { /// Storage: `Uniques::Class` (r:1 w:1) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::InstanceMetadataOf` (r:1 w:0) - /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) + /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(187), added: 2662, mode: `MaxEncodedLen`) /// Storage: `Uniques::Attribute` (r:1 w:1) - /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(364), added: 2839, mode: `MaxEncodedLen`) + /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(172), added: 2647, mode: `MaxEncodedLen`) fn set_attribute() -> Weight { // Proof Size summary in bytes: - // Measured: `514` - // Estimated: `3829` - // Minimum execution time: 38_677_000 picoseconds. - Weight::from_parts(40_351_000, 0) - .saturating_add(Weight::from_parts(0, 3829)) + // Measured: `593` + // Estimated: `3652` + // Minimum execution time: 36_996_000 picoseconds. + Weight::from_parts(37_516_000, 0) + .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Uniques::Class` (r:1 w:1) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::InstanceMetadataOf` (r:1 w:0) - /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) + /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(187), added: 2662, mode: `MaxEncodedLen`) /// Storage: `Uniques::Attribute` (r:1 w:1) - /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(364), added: 2839, mode: `MaxEncodedLen`) + /// Proof: `Uniques::Attribute` (`max_values`: None, `max_size`: Some(172), added: 2647, mode: `MaxEncodedLen`) fn clear_attribute() -> Weight { // Proof Size summary in bytes: - // Measured: `903` - // Estimated: `3829` - // Minimum execution time: 38_179_000 picoseconds. - Weight::from_parts(38_947_000, 0) - .saturating_add(Weight::from_parts(0, 3829)) + // Measured: `790` + // Estimated: `3652` + // Minimum execution time: 36_482_000 picoseconds. + Weight::from_parts(37_229_000, 0) + .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Uniques::Class` (r:1 w:1) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::InstanceMetadataOf` (r:1 w:1) - /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) + /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(187), added: 2662, mode: `MaxEncodedLen`) fn set_metadata() -> Weight { // Proof Size summary in bytes: // Measured: `382` - // Estimated: `3643` - // Minimum execution time: 29_523_000 picoseconds. - Weight::from_parts(29_793_000, 0) - .saturating_add(Weight::from_parts(0, 3643)) + // Estimated: `3652` + // Minimum execution time: 28_710_000 picoseconds. + Weight::from_parts(29_320_000, 0) + .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Uniques::Class` (r:1 w:1) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::InstanceMetadataOf` (r:1 w:1) - /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) + /// Proof: `Uniques::InstanceMetadataOf` (`max_values`: None, `max_size`: Some(187), added: 2662, mode: `MaxEncodedLen`) fn clear_metadata() -> Weight { // Proof Size summary in bytes: - // Measured: `514` - // Estimated: `3643` - // Minimum execution time: 30_325_000 picoseconds. - Weight::from_parts(31_101_000, 0) - .saturating_add(Weight::from_parts(0, 3643)) + // Measured: `593` + // Estimated: `3652` + // Minimum execution time: 29_481_000 picoseconds. + Weight::from_parts(30_283_000, 0) + .saturating_add(Weight::from_parts(0, 3652)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } /// Storage: `Uniques::Class` (r:1 w:1) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::ClassMetadataOf` (r:1 w:1) - /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(167), added: 2642, mode: `MaxEncodedLen`) fn set_collection_metadata() -> Weight { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 30_166_000 picoseconds. - Weight::from_parts(30_674_000, 0) + // Minimum execution time: 29_369_000 picoseconds. + Weight::from_parts(29_966_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -367,13 +367,13 @@ impl pallet_uniques::WeightInfo for WeightInfo { /// Storage: `Uniques::Class` (r:1 w:0) /// Proof: `Uniques::Class` (`max_values`: None, `max_size`: Some(178), added: 2653, mode: `MaxEncodedLen`) /// Storage: `Uniques::ClassMetadataOf` (r:1 w:1) - /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Proof: `Uniques::ClassMetadataOf` (`max_values`: None, `max_size`: Some(167), added: 2642, mode: `MaxEncodedLen`) fn clear_collection_metadata() -> Weight { // Proof Size summary in bytes: - // Measured: `428` + // Measured: `507` // Estimated: `3643` - // Minimum execution time: 29_847_000 picoseconds. - Weight::from_parts(30_538_000, 0) + // Minimum execution time: 28_423_000 picoseconds. + Weight::from_parts(29_212_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -386,8 +386,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 18_771_000 picoseconds. - Weight::from_parts(19_375_000, 0) + // Minimum execution time: 18_280_000 picoseconds. + Weight::from_parts(18_659_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -400,8 +400,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `495` // Estimated: `3643` - // Minimum execution time: 18_623_000 picoseconds. - Weight::from_parts(19_141_000, 0) + // Minimum execution time: 18_511_000 picoseconds. + Weight::from_parts(18_879_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -412,8 +412,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3517` - // Minimum execution time: 14_816_000 picoseconds. - Weight::from_parts(15_181_000, 0) + // Minimum execution time: 13_887_000 picoseconds. + Weight::from_parts(14_265_000, 0) .saturating_add(Weight::from_parts(0, 3517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -426,8 +426,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 15_857_000 picoseconds. - Weight::from_parts(16_273_000, 0) + // Minimum execution time: 15_334_000 picoseconds. + Weight::from_parts(15_660_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -440,8 +440,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `293` // Estimated: `3587` - // Minimum execution time: 15_632_000 picoseconds. - Weight::from_parts(16_016_000, 0) + // Minimum execution time: 15_343_000 picoseconds. + Weight::from_parts(15_571_000, 0) .saturating_add(Weight::from_parts(0, 3587)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -458,8 +458,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `574` // Estimated: `3643` - // Minimum execution time: 35_142_000 picoseconds. - Weight::from_parts(36_077_000, 0) + // Minimum execution time: 35_290_000 picoseconds. + Weight::from_parts(35_990_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_utility.rs b/runtime/trappist/src/weights/pallet_utility.rs index 00c40230..ee84b3a7 100644 --- a/runtime/trappist/src/weights/pallet_utility.rs +++ b/runtime/trappist/src/weights/pallet_utility.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_utility` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -57,11 +57,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_169_000 picoseconds. - Weight::from_parts(7_327_000, 0) + // Minimum execution time: 6_636_000 picoseconds. + Weight::from_parts(18_532_533, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 2_252 - .saturating_add(Weight::from_parts(7_026_003, 0).saturating_mul(c.into())) + // Standard Error: 4_603 + .saturating_add(Weight::from_parts(6_036_739, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -70,8 +70,8 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 9_334_000 picoseconds. - Weight::from_parts(9_624_000, 0) + // Minimum execution time: 8_653_000 picoseconds. + Weight::from_parts(8_982_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -82,19 +82,19 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_216_000 picoseconds. - Weight::from_parts(9_153_457, 0) + // Minimum execution time: 6_621_000 picoseconds. + Weight::from_parts(24_018_160, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_630 - .saturating_add(Weight::from_parts(7_326_631, 0).saturating_mul(c.into())) + // Standard Error: 4_233 + .saturating_add(Weight::from_parts(6_282_553, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_376_000 picoseconds. - Weight::from_parts(9_795_000, 0) + // Minimum execution time: 9_106_000 picoseconds. + Weight::from_parts(9_374_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -104,11 +104,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_185_000 picoseconds. - Weight::from_parts(10_318_186, 0) + // Minimum execution time: 6_608_000 picoseconds. + Weight::from_parts(20_540_741, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_481 - .saturating_add(Weight::from_parts(7_029_779, 0).saturating_mul(c.into())) + // Standard Error: 3_950 + .saturating_add(Weight::from_parts(6_037_237, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } } diff --git a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs index ddec85a7..db002f68 100644 --- a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs +++ b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `pallet_withdraw_teleport` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -66,8 +66,8 @@ impl pallet_withdraw_teleport::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 94_878_000 picoseconds. - Weight::from_parts(97_451_000, 0) + // Minimum execution time: 87_068_000 picoseconds. + Weight::from_parts(89_581_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs index 632cdcb7..88359c56 100644 --- a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs +++ b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs @@ -18,10 +18,10 @@ //! Autogenerated weights for `trappist_runtime_benchmarks` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` -//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 // Executed Command: // ./target/production/trappist-node @@ -58,8 +58,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `131` // Estimated: `4087` - // Minimum execution time: 8_638_000 picoseconds. - Weight::from_parts(8_888_000, 0) + // Minimum execution time: 8_180_000 picoseconds. + Weight::from_parts(8_285_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -69,8 +69,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 4_652_000 picoseconds. - Weight::from_parts(4_925_000, 0) + // Minimum execution time: 4_203_000 picoseconds. + Weight::from_parts(4_348_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -78,8 +78,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_230_000 picoseconds. - Weight::from_parts(1_272_000, 0) + // Minimum execution time: 873_000 picoseconds. + Weight::from_parts(900_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/xcm/mod.rs b/runtime/trappist/src/weights/xcm/mod.rs index 2efc667d..82a13ebf 100644 --- a/runtime/trappist/src/weights/xcm/mod.rs +++ b/runtime/trappist/src/weights/xcm/mod.rs @@ -142,7 +142,7 @@ impl XcmWeightInfo for TrappistXcmWeight { _reserve: &MultiLocation, _xcm: &Xcm<()>, ) -> Weight { - assets.weigh_multi_assets(XcmGeneric::::initiate_reserve_withdraw()) + assets.weigh_multi_assets(XcmFungibleWeight::::initiate_reserve_withdraw()) } fn initiate_teleport( assets: &MultiAssetFilter, diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs index 62c896ad..ead91044 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs @@ -18,9 +18,9 @@ //! Autogenerated weights for `pallet_xcm_benchmarks::fungible` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("trappist-dev"), DB CACHE: 1024 // Executed Command: @@ -57,8 +57,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3593` - // Minimum execution time: 27_262_000 picoseconds. - Weight::from_parts(27_954_000, 3593) + // Minimum execution time: 26_132_000 picoseconds. + Weight::from_parts(27_106_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -68,8 +68,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `6196` - // Minimum execution time: 52_058_000 picoseconds. - Weight::from_parts(52_923_000, 6196) + // Minimum execution time: 51_339_000 picoseconds. + Weight::from_parts(52_277_000, 6196) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -91,19 +91,49 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `278` // Estimated: `6196` - // Minimum execution time: 75_544_000 picoseconds. - Weight::from_parts(76_797_000, 6196) + // Minimum execution time: 73_834_000 picoseconds. + Weight::from_parts(74_698_000, 6196) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) } + /// Storage: `Benchmark::Override` (r:0 w:0) + /// Proof: `Benchmark::Override` (`max_values`: None, `max_size`: None, mode: `Measured`) + pub(crate) fn reserve_asset_deposited() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 500_000_000_000 picoseconds. + Weight::from_parts(500_000_000_000, 0) + } + /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) + /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `PolkadotXcm::SupportedVersion` (r:1 w:0) + /// Proof: `PolkadotXcm::SupportedVersion` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `PolkadotXcm::VersionDiscoveryQueue` (r:1 w:1) + /// Proof: `PolkadotXcm::VersionDiscoveryQueue` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `PolkadotXcm::SafeXcmVersion` (r:1 w:0) + /// Proof: `PolkadotXcm::SafeXcmVersion` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `ParachainSystem::HostConfiguration` (r:1 w:0) + /// Proof: `ParachainSystem::HostConfiguration` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `ParachainSystem::PendingUpwardMessages` (r:1 w:1) + /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + pub(crate) fn initiate_reserve_withdraw() -> Weight { + // Proof Size summary in bytes: + // Measured: `177` + // Estimated: `3642` + // Minimum execution time: 415_799_000 picoseconds. + Weight::from_parts(440_359_000, 3642) + .saturating_add(T::DbWeight::get().reads(6)) + .saturating_add(T::DbWeight::get().writes(2)) + } /// Storage: `AssetRegistry::AssetMultiLocationId` (r:1 w:0) /// Proof: `AssetRegistry::AssetMultiLocationId` (`max_values`: None, `max_size`: Some(622), added: 3097, mode: `MaxEncodedLen`) pub(crate) fn receive_teleported_asset() -> Weight { // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 7_785_000 picoseconds. - Weight::from_parts(8_034_000, 4087) + // Minimum execution time: 7_364_000 picoseconds. + Weight::from_parts(7_677_000, 4087) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `System::Account` (r:1 w:1) @@ -112,8 +142,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 26_642_000 picoseconds. - Weight::from_parts(27_428_000, 3593) + // Minimum execution time: 24_978_000 picoseconds. + Weight::from_parts(25_788_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -135,8 +165,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 53_890_000 picoseconds. - Weight::from_parts(55_225_000, 3642) + // Minimum execution time: 51_432_000 picoseconds. + Weight::from_parts(52_380_000, 3642) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -158,8 +188,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `219` // Estimated: `4087` - // Minimum execution time: 36_038_000 picoseconds. - Weight::from_parts(37_199_000, 4087) + // Minimum execution time: 34_917_000 picoseconds. + Weight::from_parts(35_390_000, 4087) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs index d81ee06b..66846f88 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs @@ -18,9 +18,9 @@ //! Autogenerated weights for `pallet_xcm_benchmarks::generic` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2023-11-23, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! HOSTNAME: `runner-yprdrvc7-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("trappist-dev"), DB CACHE: 1024 // Executed Command: @@ -67,8 +67,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 429_107_000 picoseconds. - Weight::from_parts(432_486_000, 3642) + // Minimum execution time: 387_400_000 picoseconds. + Weight::from_parts(397_747_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,8 +76,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_240_000 picoseconds. - Weight::from_parts(4_413_000, 0) + // Minimum execution time: 3_673_000 picoseconds. + Weight::from_parts(3_900_000, 0) } /// Storage: `PolkadotXcm::Queries` (r:1 w:0) /// Proof: `PolkadotXcm::Queries` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -85,8 +85,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `69` // Estimated: `3534` - // Minimum execution time: 12_562_000 picoseconds. - Weight::from_parts(12_993_000, 3534) + // Minimum execution time: 11_311_000 picoseconds. + Weight::from_parts(11_864_000, 3534) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -95,51 +95,51 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 17_325_000 picoseconds. - Weight::from_parts(18_049_000, 1486) + // Minimum execution time: 15_558_000 picoseconds. + Weight::from_parts(16_178_000, 1486) .saturating_add(T::DbWeight::get().reads(1)) } pub(crate) fn refund_surplus() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_256_000 picoseconds. - Weight::from_parts(4_512_000, 0) + // Minimum execution time: 3_926_000 picoseconds. + Weight::from_parts(4_132_000, 0) } pub(crate) fn set_error_handler() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_756_000 picoseconds. - Weight::from_parts(2_966_000, 0) + // Minimum execution time: 2_579_000 picoseconds. + Weight::from_parts(2_673_000, 0) } pub(crate) fn set_appendix() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_789_000 picoseconds. - Weight::from_parts(2_952_000, 0) + // Minimum execution time: 2_551_000 picoseconds. + Weight::from_parts(2_812_000, 0) } pub(crate) fn clear_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_744_000 picoseconds. - Weight::from_parts(2_960_000, 0) + // Minimum execution time: 2_580_000 picoseconds. + Weight::from_parts(2_750_000, 0) } pub(crate) fn descend_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_649_000 picoseconds. - Weight::from_parts(3_875_000, 0) + // Minimum execution time: 3_276_000 picoseconds. + Weight::from_parts(3_429_000, 0) } pub(crate) fn clear_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_792_000 picoseconds. - Weight::from_parts(2_947_000, 0) + // Minimum execution time: 2_611_000 picoseconds. + Weight::from_parts(2_733_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -157,8 +157,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 27_866_000 picoseconds. - Weight::from_parts(28_766_000, 3642) + // Minimum execution time: 25_491_000 picoseconds. + Weight::from_parts(26_447_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -168,8 +168,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `126` // Estimated: `3591` - // Minimum execution time: 16_874_000 picoseconds. - Weight::from_parts(17_290_000, 3591) + // Minimum execution time: 15_051_000 picoseconds. + Weight::from_parts(15_366_000, 3591) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -177,8 +177,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_798_000 picoseconds. - Weight::from_parts(2_970_000, 0) + // Minimum execution time: 2_632_000 picoseconds. + Weight::from_parts(2_798_000, 0) } /// Storage: `PolkadotXcm::VersionNotifyTargets` (r:1 w:1) /// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -196,8 +196,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `145` // Estimated: `3610` - // Minimum execution time: 29_417_000 picoseconds. - Weight::from_parts(29_937_000, 3610) + // Minimum execution time: 27_710_000 picoseconds. + Weight::from_parts(28_361_000, 3610) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -207,65 +207,44 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_660_000 picoseconds. - Weight::from_parts(4_789_000, 0) + // Minimum execution time: 4_366_000 picoseconds. + Weight::from_parts(4_571_000, 0) .saturating_add(T::DbWeight::get().writes(1)) } - /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) - /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) - /// Storage: `PolkadotXcm::SupportedVersion` (r:1 w:0) - /// Proof: `PolkadotXcm::SupportedVersion` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `PolkadotXcm::VersionDiscoveryQueue` (r:1 w:1) - /// Proof: `PolkadotXcm::VersionDiscoveryQueue` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `PolkadotXcm::SafeXcmVersion` (r:1 w:0) - /// Proof: `PolkadotXcm::SafeXcmVersion` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `ParachainSystem::HostConfiguration` (r:1 w:0) - /// Proof: `ParachainSystem::HostConfiguration` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `ParachainSystem::PendingUpwardMessages` (r:1 w:1) - /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - pub(crate) fn initiate_reserve_withdraw() -> Weight { - // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 472_248_000 picoseconds. - Weight::from_parts(482_888_000, 3642) - .saturating_add(T::DbWeight::get().reads(6)) - .saturating_add(T::DbWeight::get().writes(2)) - } pub(crate) fn burn_asset() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 134_643_000 picoseconds. - Weight::from_parts(138_191_000, 0) + // Minimum execution time: 117_082_000 picoseconds. + Weight::from_parts(123_887_000, 0) } pub(crate) fn expect_asset() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 13_144_000 picoseconds. - Weight::from_parts(13_282_000, 0) + // Minimum execution time: 12_079_000 picoseconds. + Weight::from_parts(12_440_000, 0) } pub(crate) fn expect_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_985_000 picoseconds. - Weight::from_parts(3_130_000, 0) + // Minimum execution time: 2_722_000 picoseconds. + Weight::from_parts(2_815_000, 0) } pub(crate) fn expect_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_821_000 picoseconds. - Weight::from_parts(2_932_000, 0) + // Minimum execution time: 2_619_000 picoseconds. + Weight::from_parts(2_740_000, 0) } pub(crate) fn expect_transact_status() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_968_000 picoseconds. - Weight::from_parts(3_176_000, 0) + // Minimum execution time: 2_845_000 picoseconds. + Weight::from_parts(3_087_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -283,8 +262,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 33_687_000 picoseconds. - Weight::from_parts(34_426_000, 3642) + // Minimum execution time: 31_097_000 picoseconds. + Weight::from_parts(31_895_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -292,8 +271,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_569_000 picoseconds. - Weight::from_parts(6_710_000, 0) + // Minimum execution time: 6_442_000 picoseconds. + Weight::from_parts(6_713_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -311,8 +290,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3642` - // Minimum execution time: 28_217_000 picoseconds. - Weight::from_parts(28_760_000, 3642) + // Minimum execution time: 26_108_000 picoseconds. + Weight::from_parts(26_828_000, 3642) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -320,35 +299,35 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_902_000 picoseconds. - Weight::from_parts(3_008_000, 0) + // Minimum execution time: 2_598_000 picoseconds. + Weight::from_parts(2_727_000, 0) } pub(crate) fn set_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_815_000 picoseconds. - Weight::from_parts(2_957_000, 0) + // Minimum execution time: 2_543_000 picoseconds. + Weight::from_parts(2_728_000, 0) } pub(crate) fn clear_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_780_000 picoseconds. - Weight::from_parts(2_938_000, 0) + // Minimum execution time: 2_540_000 picoseconds. + Weight::from_parts(2_688_000, 0) } pub(crate) fn set_fees_mode() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_728_000 picoseconds. - Weight::from_parts(2_927_000, 0) + // Minimum execution time: 2_574_000 picoseconds. + Weight::from_parts(2_790_000, 0) } pub(crate) fn unpaid_execution() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_912_000 picoseconds. - Weight::from_parts(3_053_000, 0) + // Minimum execution time: 2_710_000 picoseconds. + Weight::from_parts(2_821_000, 0) } }