Companion for #11649: Bound uses of Call (#5729)

* Fixes

* Clear out old weights

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Resolve merges

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Fix weight traits

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* polkadot runtime: Clippy

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* rococo runtime: update pallet configs

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add preimage migration

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add all migrations

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Democracy is not on Westend

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* [Migration] Refund stored multisig calls (#6075)

* Add Preimages to referenda config

Needed since Gov V2 just merged.

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Update weights

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add multisig migration to Westend+Rococo

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Fix Executive syntax

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Bump Substrate

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: parity-processbot <>
Co-authored-by: Roman Useinov <roman.useinov@gmail.com>
This commit is contained in:
Gavin Wood
2022-10-05 22:17:59 +01:00
committed by GitHub
parent 4aea71a95f
commit 9a3cf4cd1f
19 changed files with 786 additions and 1249 deletions
+192 -187
View File
File diff suppressed because it is too large Load Diff
@@ -314,6 +314,7 @@ impl pallet_referenda::Config<FellowshipReferendaInstance> for Runtime {
type UndecidingTimeout = UndecidingTimeout; type UndecidingTimeout = UndecidingTimeout;
type AlarmInterval = AlarmInterval; type AlarmInterval = AlarmInterval;
type Tracks = TracksInfo; type Tracks = TracksInfo;
type Preimages = Preimage;
} }
pub type FellowshipCollectiveInstance = pallet_ranked_collective::Instance1; pub type FellowshipCollectiveInstance = pallet_ranked_collective::Instance1;
@@ -91,4 +91,5 @@ impl pallet_referenda::Config for Runtime {
type UndecidingTimeout = UndecidingTimeout; type UndecidingTimeout = UndecidingTimeout;
type AlarmInterval = AlarmInterval; type AlarmInterval = AlarmInterval;
type Tracks = TracksInfo; type Tracks = TracksInfo;
type Preimages = Preimage;
} }
@@ -32,7 +32,6 @@ parameter_types! {
} }
impl pallet_democracy::Config for Runtime { impl pallet_democracy::Config for Runtime {
type Proposal = RuntimeCall;
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type EnactmentPeriod = EnactmentPeriod; type EnactmentPeriod = EnactmentPeriod;
@@ -74,14 +73,15 @@ impl pallet_democracy::Config for Runtime {
// only do it once and it lasts only for the cooloff period. // only do it once and it lasts only for the cooloff period.
type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>; type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>;
type CooloffPeriod = CooloffPeriod; type CooloffPeriod = CooloffPeriod;
type PreimageByteDeposit = PreimageByteDeposit;
type OperationalPreimageOrigin = pallet_collective::EnsureMember<AccountId, CouncilCollective>;
type Slash = Treasury; type Slash = Treasury;
type Scheduler = Scheduler; type Scheduler = Scheduler;
type PalletsOrigin = OriginCaller; type PalletsOrigin = OriginCaller;
type MaxVotes = MaxVotes; type MaxVotes = MaxVotes;
type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>; type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>;
type MaxProposals = MaxProposals; type MaxProposals = MaxProposals;
type Preimages = Preimage;
type MaxDeposits = ConstU32<100>;
type MaxBlacklisted = ConstU32<100>;
} }
parameter_types! { parameter_types! {
+8 -5
View File
@@ -225,12 +225,10 @@ impl pallet_scheduler::Config for Runtime {
type MaxScheduledPerBlock = MaxScheduledPerBlock; type MaxScheduledPerBlock = MaxScheduledPerBlock;
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>; type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
type OriginPrivilegeCmp = OriginPrivilegeCmp; type OriginPrivilegeCmp = OriginPrivilegeCmp;
type PreimageProvider = Preimage; type Preimages = Preimage;
type NoPreimagePostponement = NoPreimagePostponement;
} }
parameter_types! { parameter_types! {
pub const PreimageMaxSize: u32 = 4096 * 1024;
pub const PreimageBaseDeposit: Balance = deposit(2, 64); pub const PreimageBaseDeposit: Balance = deposit(2, 64);
pub const PreimageByteDeposit: Balance = deposit(0, 1); pub const PreimageByteDeposit: Balance = deposit(0, 1);
} }
@@ -239,8 +237,7 @@ impl pallet_preimage::Config for Runtime {
type WeightInfo = weights::pallet_preimage::WeightInfo<Runtime>; type WeightInfo = weights::pallet_preimage::WeightInfo<Runtime>;
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type ManagerOrigin = EnsureRoot<AccountId>; // This might be too strong a requirenent? type ManagerOrigin = EnsureRoot<AccountId>;
type MaxSize = PreimageMaxSize;
type BaseDeposit = PreimageBaseDeposit; type BaseDeposit = PreimageBaseDeposit;
type ByteDeposit = PreimageByteDeposit; type ByteDeposit = PreimageByteDeposit;
} }
@@ -1471,6 +1468,12 @@ pub type Executive = frame_executive::Executive<
StakingMigrationV11OldPallet, StakingMigrationV11OldPallet,
>, >,
pallet_staking::migrations::v12::MigrateToV12<Runtime>, pallet_staking::migrations::v12::MigrateToV12<Runtime>,
// "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729>
pallet_preimage::migration::v1::Migration<Runtime>,
pallet_scheduler::migration::v3::MigrateToV4<Runtime>,
pallet_democracy::migrations::v1::Migration<Runtime>,
pallet_multisig::migrations::v1::MigrateToV1<Runtime>,
// "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091>
parachains_configuration::migration::v3::MigrateToV3<Runtime>, parachains_configuration::migration::v3::MigrateToV3<Runtime>,
), ),
>; >;
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_democracy` //! Autogenerated weights for `pallet_democracy`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,13 +32,13 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/kusama/src/weights/ // --output=./runtime/kusama/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_democracy`. /// Weight functions for `pallet_democracy`.
@@ -49,134 +49,103 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
// Storage: Democracy DepositOf (r:0 w:1) // Storage: Democracy DepositOf (r:0 w:1)
fn propose() -> Weight { fn propose() -> Weight {
Weight::from_ref_time(39_849_000 as u64) Weight::from_ref_time(42_340_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
/// The range of component `s` is `[0, 100]`. fn second() -> Weight {
fn second(s: u32, ) -> Weight { Weight::from_ref_time(38_557_000 as u64)
Weight::from_ref_time(31_560_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(81_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_new() -> Weight {
fn vote_new(r: u32, ) -> Weight { Weight::from_ref_time(48_480_000 as u64)
Weight::from_ref_time(43_461_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(91_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_existing() -> Weight {
fn vote_existing(r: u32, ) -> Weight { Weight::from_ref_time(48_553_000 as u64)
Weight::from_ref_time(43_754_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(88_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Cancellations (r:1 w:1) // Storage: Democracy Cancellations (r:1 w:1)
fn emergency_cancel() -> Weight { fn emergency_cancel() -> Weight {
Weight::from_ref_time(21_199_000 as u64) Weight::from_ref_time(20_602_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1)
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Blacklist (r:0 w:1) // Storage: Democracy Blacklist (r:0 w:1)
// Storage: Democracy DepositOf (r:1 w:1) fn blacklist() -> Weight {
// Storage: System Account (r:1 w:1) Weight::from_ref_time(75_265_000 as u64)
/// The range of component `p` is `[1, 100]`.
fn blacklist(p: u32, ) -> Weight {
Weight::from_ref_time(55_593_000 as u64)
// Standard Error: 6_000
.saturating_add(Weight::from_ref_time(161_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
/// The range of component `v` is `[1, 100]`. fn external_propose() -> Weight {
fn external_propose(v: u32, ) -> Weight { Weight::from_ref_time(15_498_000 as u64)
Weight::from_ref_time(14_747_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(13_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_majority() -> Weight { fn external_propose_majority() -> Weight {
Weight::from_ref_time(4_471_000 as u64) Weight::from_ref_time(4_503_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_default() -> Weight { fn external_propose_default() -> Weight {
Weight::from_ref_time(4_230_000 as u64) Weight::from_ref_time(4_486_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:1) // Storage: Democracy ReferendumCount (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn fast_track() -> Weight { fn fast_track() -> Weight {
Weight::from_ref_time(20_311_000 as u64) Weight::from_ref_time(19_676_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:1) // Storage: Democracy Blacklist (r:1 w:1)
/// The range of component `v` is `[0, 100]`. fn veto_external() -> Weight {
fn veto_external(v: u32, ) -> Weight { Weight::from_ref_time(25_443_000 as u64)
Weight::from_ref_time(22_052_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `p` is `[1, 100]`. fn cancel_proposal() -> Weight {
fn cancel_proposal(p: u32, ) -> Weight { Weight::from_ref_time(63_468_000 as u64)
Weight::from_ref_time(46_926_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(130_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn cancel_referendum() -> Weight { fn cancel_referendum() -> Weight {
Weight::from_ref_time(13_121_000 as u64) Weight::from_ref_time(13_030_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `r` is `[1, 99]`.
fn cancel_queued(r: u32, ) -> Weight {
Weight::from_ref_time(27_805_000 as u64)
// Standard Error: 3_000
.saturating_add(Weight::from_ref_time(1_112_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Democracy LowestUnbaked (r:1 w:1) // Storage: Democracy LowestUnbaked (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:0) // Storage: Democracy ReferendumCount (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base(r: u32, ) -> Weight { fn on_initialize_base(r: u32, ) -> Weight {
Weight::from_ref_time(9_815_000 as u64) Weight::from_ref_time(5_941_000 as u64)
// Standard Error: 4_000 // Standard Error: 2_263
.saturating_add(Weight::from_ref_time(1_996_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_136_731 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -186,36 +155,36 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy LastTabledWasExternal (r:1 w:0) // Storage: Democracy LastTabledWasExternal (r:1 w:0)
// Storage: Democracy NextExternal (r:1 w:0) // Storage: Democracy NextExternal (r:1 w:0)
// Storage: Democracy PublicProps (r:1 w:0) // Storage: Democracy PublicProps (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base_with_launch_period(r: u32, ) -> Weight { fn on_initialize_base_with_launch_period(r: u32, ) -> Weight {
Weight::from_ref_time(12_343_000 as u64) Weight::from_ref_time(8_085_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_202
.saturating_add(Weight::from_ref_time(2_001_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_143_624 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy VotingOf (r:3 w:3) // Storage: Democracy VotingOf (r:3 w:3)
// Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[0, 99]`.
fn delegate(r: u32, ) -> Weight { fn delegate(r: u32, ) -> Weight {
Weight::from_ref_time(47_307_000 as u64) Weight::from_ref_time(40_416_000 as u64)
// Standard Error: 5_000 // Standard Error: 4_125
.saturating_add(Weight::from_ref_time(2_899_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(3_038_258 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
} }
// Storage: Democracy VotingOf (r:2 w:2) // Storage: Democracy VotingOf (r:2 w:2)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn undelegate(r: u32, ) -> Weight { fn undelegate(r: u32, ) -> Weight {
Weight::from_ref_time(27_872_000 as u64) Weight::from_ref_time(24_459_000 as u64)
// Standard Error: 6_000 // Standard Error: 2_860
.saturating_add(Weight::from_ref_time(2_861_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_984_453 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -223,76 +192,48 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
} }
// Storage: Democracy PublicProps (r:0 w:1) // Storage: Democracy PublicProps (r:0 w:1)
fn clear_public_proposals() -> Weight { fn clear_public_proposals() -> Weight {
Weight::from_ref_time(5_014_000 as u64) Weight::from_ref_time(5_200_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(29_213_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_imminent_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(21_778_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
// Storage: System Account (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn reap_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(36_642_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_remove(r: u32, ) -> Weight { fn unlock_remove(r: u32, ) -> Weight {
Weight::from_ref_time(31_776_000 as u64) Weight::from_ref_time(24_289_000 as u64)
// Standard Error: 0 // Standard Error: 2_579
.saturating_add(Weight::from_ref_time(37_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(125_300 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_set(r: u32, ) -> Weight { fn unlock_set(r: u32, ) -> Weight {
Weight::from_ref_time(31_414_000 as u64) Weight::from_ref_time(28_331_000 as u64)
// Standard Error: 0 // Standard Error: 755
.saturating_add(Weight::from_ref_time(77_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(90_997 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_vote(r: u32, ) -> Weight { fn remove_vote(r: u32, ) -> Weight {
Weight::from_ref_time(18_428_000 as u64) Weight::from_ref_time(15_350_000 as u64)
// Standard Error: 1_000 // Standard Error: 1_015
.saturating_add(Weight::from_ref_time(84_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(104_402 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_other_vote(r: u32, ) -> Weight { fn remove_other_vote(r: u32, ) -> Weight {
Weight::from_ref_time(18_684_000 as u64) Weight::from_ref_time(15_433_000 as u64)
// Standard Error: 1_000 // Standard Error: 980
.saturating_add(Weight::from_ref_time(77_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(104_660 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_preimage` //! Autogenerated weights for `pallet_preimage`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,103 +32,102 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/kusama/src/weights/ // --output=./runtime/kusama/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_preimage`. /// Weight functions for `pallet_preimage`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_preimage(s: u32, ) -> Weight { fn note_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(27_993_000 as u64)
// Standard Error: 0 // Standard Error: 5
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_208 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_requested_preimage(s: u32, ) -> Weight { fn note_requested_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(19_503_000 as u64)
// Standard Error: 0 // Standard Error: 5
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_264 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_no_deposit_preimage(s: u32, ) -> Weight { fn note_no_deposit_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(17_878_000 as u64)
// Standard Error: 0 // Standard Error: 2
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_130 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_preimage() -> Weight { fn unnote_preimage() -> Weight {
Weight::from_ref_time(37_471_000 as u64) Weight::from_ref_time(40_091_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_no_deposit_preimage() -> Weight { fn unnote_no_deposit_preimage() -> Weight {
Weight::from_ref_time(26_305_000 as u64) Weight::from_ref_time(27_459_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_preimage() -> Weight { fn request_preimage() -> Weight {
Weight::from_ref_time(35_418_000 as u64) Weight::from_ref_time(27_176_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_no_deposit_preimage() -> Weight { fn request_no_deposit_preimage() -> Weight {
Weight::from_ref_time(23_113_000 as u64) Weight::from_ref_time(14_096_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_unnoted_preimage() -> Weight { fn request_unnoted_preimage() -> Weight {
Weight::from_ref_time(17_429_000 as u64) Weight::from_ref_time(17_365_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_requested_preimage() -> Weight { fn request_requested_preimage() -> Weight {
Weight::from_ref_time(8_153_000 as u64) Weight::from_ref_time(8_013_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_preimage() -> Weight { fn unrequest_preimage() -> Weight {
Weight::from_ref_time(25_132_000 as u64) Weight::from_ref_time(27_185_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_unnoted_preimage() -> Weight { fn unrequest_unnoted_preimage() -> Weight {
Weight::from_ref_time(17_918_000 as u64) Weight::from_ref_time(7_955_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_multi_referenced_preimage() -> Weight { fn unrequest_multi_referenced_preimage() -> Weight {
Weight::from_ref_time(8_173_000 as u64) Weight::from_ref_time(7_819_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_scheduler` //! Autogenerated weights for `pallet_scheduler`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,145 +32,66 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/kusama/src/weights/ // --output=./runtime/kusama/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_scheduler`. /// Weight functions for `pallet_scheduler`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:2 w:2) // Storage: Scheduler IncompleteSince (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1) fn service_agendas_base() -> Weight {
// Storage: Preimage StatusFor (r:1 w:1) Weight::from_ref_time(4_558_000 as u64)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(11_217_000 as u64)
// Standard Error: 43_000
.saturating_add(Weight::from_ref_time(19_456_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((4 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(15_840_000 as u64)
// Standard Error: 23_000
.saturating_add(Weight::from_ref_time(15_699_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(10_761_000 as u64)
// Standard Error: 28_000
.saturating_add(Weight::from_ref_time(17_063_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(12_801_000 as u64)
// Standard Error: 27_000
.saturating_add(Weight::from_ref_time(14_878_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(10_462_000 as u64)
// Standard Error: 8_000
.saturating_add(Weight::from_ref_time(5_706_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(9_952_000 as u64)
// Standard Error: 5_000
.saturating_add(Weight::from_ref_time(3_762_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named(s: u32, ) -> Weight {
Weight::from_ref_time(14_502_000 as u64)
// Standard Error: 14_000
.saturating_add(Weight::from_ref_time(10_550_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic(s: u32, ) -> Weight {
Weight::from_ref_time(14_956_000 as u64)
// Standard Error: 12_000
.saturating_add(Weight::from_ref_time(8_343_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named(s: u32, ) -> Weight {
Weight::from_ref_time(13_862_000 as u64)
// Standard Error: 10_000
.saturating_add(Weight::from_ref_time(7_398_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize(s: u32, ) -> Weight {
Weight::from_ref_time(14_529_000 as u64)
// Standard Error: 10_000
.saturating_add(Weight::from_ref_time(6_467_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 50]`.
fn service_agenda_base(s: u32, ) -> Weight {
Weight::from_ref_time(3_715_000 as u64)
// Standard Error: 2_737
.saturating_add(Weight::from_ref_time(624_353 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn service_task_base() -> Weight {
Weight::from_ref_time(9_345_000 as u64)
}
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[128, 4194304]`.
fn service_task_fetched(s: u32, ) -> Weight {
Weight::from_ref_time(20_078_000 as u64)
// Standard Error: 5
.saturating_add(Weight::from_ref_time(1_153 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Lookup (r:0 w:1)
fn service_task_named() -> Weight {
Weight::from_ref_time(10_744_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn service_task_periodic() -> Weight {
Weight::from_ref_time(9_556_000 as u64)
}
fn execute_dispatch_signed() -> Weight {
Weight::from_ref_time(4_130_000 as u64)
}
fn execute_dispatch_unsigned() -> Weight {
Weight::from_ref_time(4_058_000 as u64)
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 49]`.
fn schedule(s: u32, ) -> Weight { fn schedule(s: u32, ) -> Weight {
Weight::from_ref_time(19_944_000 as u64) Weight::from_ref_time(16_721_000 as u64)
// Standard Error: 1_000 // Standard Error: 3_319
.saturating_add(Weight::from_ref_time(69_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(657_802 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -178,19 +99,19 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Lookup (r:0 w:1) // Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel(s: u32, ) -> Weight { fn cancel(s: u32, ) -> Weight {
Weight::from_ref_time(20_087_000 as u64) Weight::from_ref_time(19_496_000 as u64)
// Standard Error: 4_000 // Standard Error: 1_368
.saturating_add(Weight::from_ref_time(1_214_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(572_226 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1) // Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 49]`.
fn schedule_named(s: u32, ) -> Weight { fn schedule_named(s: u32, ) -> Weight {
Weight::from_ref_time(23_553_000 as u64) Weight::from_ref_time(19_831_000 as u64)
// Standard Error: 3_000 // Standard Error: 3_559
.saturating_add(Weight::from_ref_time(118_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(689_493 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -198,9 +119,9 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel_named(s: u32, ) -> Weight { fn cancel_named(s: u32, ) -> Weight {
Weight::from_ref_time(22_403_000 as u64) Weight::from_ref_time(20_788_000 as u64)
// Standard Error: 3_000 // Standard Error: 1_758
.saturating_add(Weight::from_ref_time(1_255_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(605_808 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
+14 -7
View File
@@ -40,7 +40,10 @@ use beefy_primitives::crypto::AuthorityId as BeefyId;
use frame_election_provider_support::{generate_solution_type, onchain, SequentialPhragmen}; use frame_election_provider_support::{generate_solution_type, onchain, SequentialPhragmen};
use frame_support::{ use frame_support::{
construct_runtime, parameter_types, construct_runtime, parameter_types,
traits::{EitherOfDiverse, InstanceFilter, KeyOwnerProofSystem, LockIdentifier, PrivilegeCmp}, traits::{
ConstU32, EitherOfDiverse, InstanceFilter, KeyOwnerProofSystem, LockIdentifier,
PrivilegeCmp,
},
weights::ConstantMultiplier, weights::ConstantMultiplier,
PalletId, RuntimeDebug, PalletId, RuntimeDebug,
}; };
@@ -215,8 +218,7 @@ impl pallet_scheduler::Config for Runtime {
type MaxScheduledPerBlock = MaxScheduledPerBlock; type MaxScheduledPerBlock = MaxScheduledPerBlock;
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>; type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
type OriginPrivilegeCmp = OriginPrivilegeCmp; type OriginPrivilegeCmp = OriginPrivilegeCmp;
type PreimageProvider = Preimage; type Preimages = Preimage;
type NoPreimagePostponement = NoPreimagePostponement;
} }
parameter_types! { parameter_types! {
@@ -230,7 +232,6 @@ impl pallet_preimage::Config for Runtime {
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type ManagerOrigin = EnsureRoot<AccountId>; type ManagerOrigin = EnsureRoot<AccountId>;
type MaxSize = PreimageMaxSize;
type BaseDeposit = PreimageBaseDeposit; type BaseDeposit = PreimageBaseDeposit;
type ByteDeposit = PreimageByteDeposit; type ByteDeposit = PreimageByteDeposit;
} }
@@ -615,7 +616,6 @@ parameter_types! {
} }
impl pallet_democracy::Config for Runtime { impl pallet_democracy::Config for Runtime {
type Proposal = RuntimeCall;
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type EnactmentPeriod = EnactmentPeriod; type EnactmentPeriod = EnactmentPeriod;
@@ -667,14 +667,15 @@ impl pallet_democracy::Config for Runtime {
// only do it once and it lasts only for the cooloff period. // only do it once and it lasts only for the cooloff period.
type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>; type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>;
type CooloffPeriod = CooloffPeriod; type CooloffPeriod = CooloffPeriod;
type PreimageByteDeposit = PreimageByteDeposit;
type OperationalPreimageOrigin = pallet_collective::EnsureMember<AccountId, CouncilCollective>;
type Slash = Treasury; type Slash = Treasury;
type Scheduler = Scheduler; type Scheduler = Scheduler;
type PalletsOrigin = OriginCaller; type PalletsOrigin = OriginCaller;
type MaxVotes = MaxVotes; type MaxVotes = MaxVotes;
type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>; type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>;
type MaxProposals = MaxProposals; type MaxProposals = MaxProposals;
type Preimages = Preimage;
type MaxDeposits = ConstU32<100>;
type MaxBlacklisted = ConstU32<100>;
} }
parameter_types! { parameter_types! {
@@ -1560,6 +1561,12 @@ pub type Executive = frame_executive::Executive<
StakingMigrationV11OldPallet, StakingMigrationV11OldPallet,
>, >,
pallet_staking::migrations::v12::MigrateToV12<Runtime>, pallet_staking::migrations::v12::MigrateToV12<Runtime>,
// "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729>
pallet_preimage::migration::v1::Migration<Runtime>,
pallet_scheduler::migration::v3::MigrateToV4<Runtime>,
pallet_democracy::migrations::v1::Migration<Runtime>,
pallet_multisig::migrations::v1::MigrateToV1<Runtime>,
// "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091>
parachains_configuration::migration::v3::MigrateToV3<Runtime>, parachains_configuration::migration::v3::MigrateToV3<Runtime>,
), ),
>; >;
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_democracy` //! Autogenerated weights for `pallet_democracy`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,13 +32,13 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/polkadot/src/weights/ // --output=./runtime/polkadot/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_democracy`. /// Weight functions for `pallet_democracy`.
@@ -49,134 +49,103 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
// Storage: Democracy DepositOf (r:0 w:1) // Storage: Democracy DepositOf (r:0 w:1)
fn propose() -> Weight { fn propose() -> Weight {
Weight::from_ref_time(40_082_000 as u64) Weight::from_ref_time(42_048_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
/// The range of component `s` is `[0, 100]`. fn second() -> Weight {
fn second(s: u32, ) -> Weight { Weight::from_ref_time(38_631_000 as u64)
Weight::from_ref_time(31_920_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(82_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_new() -> Weight {
fn vote_new(r: u32, ) -> Weight { Weight::from_ref_time(48_571_000 as u64)
Weight::from_ref_time(43_490_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(82_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_existing() -> Weight {
fn vote_existing(r: u32, ) -> Weight { Weight::from_ref_time(48_556_000 as u64)
Weight::from_ref_time(42_957_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(88_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Cancellations (r:1 w:1) // Storage: Democracy Cancellations (r:1 w:1)
fn emergency_cancel() -> Weight { fn emergency_cancel() -> Weight {
Weight::from_ref_time(20_818_000 as u64) Weight::from_ref_time(20_104_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1)
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Blacklist (r:0 w:1) // Storage: Democracy Blacklist (r:0 w:1)
// Storage: Democracy DepositOf (r:1 w:1) fn blacklist() -> Weight {
// Storage: System Account (r:1 w:1) Weight::from_ref_time(75_289_000 as u64)
/// The range of component `p` is `[1, 100]`.
fn blacklist(p: u32, ) -> Weight {
Weight::from_ref_time(55_285_000 as u64)
// Standard Error: 6_000
.saturating_add(Weight::from_ref_time(159_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
/// The range of component `v` is `[1, 100]`. fn external_propose() -> Weight {
fn external_propose(v: u32, ) -> Weight { Weight::from_ref_time(15_734_000 as u64)
Weight::from_ref_time(14_271_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(13_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_majority() -> Weight { fn external_propose_majority() -> Weight {
Weight::from_ref_time(4_129_000 as u64) Weight::from_ref_time(4_507_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_default() -> Weight { fn external_propose_default() -> Weight {
Weight::from_ref_time(4_215_000 as u64) Weight::from_ref_time(4_603_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:1) // Storage: Democracy ReferendumCount (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn fast_track() -> Weight { fn fast_track() -> Weight {
Weight::from_ref_time(20_440_000 as u64) Weight::from_ref_time(19_816_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:1) // Storage: Democracy Blacklist (r:1 w:1)
/// The range of component `v` is `[0, 100]`. fn veto_external() -> Weight {
fn veto_external(v: u32, ) -> Weight { Weight::from_ref_time(25_722_000 as u64)
Weight::from_ref_time(21_988_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(19_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `p` is `[1, 100]`. fn cancel_proposal() -> Weight {
fn cancel_proposal(p: u32, ) -> Weight { Weight::from_ref_time(63_768_000 as u64)
Weight::from_ref_time(46_176_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(134_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn cancel_referendum() -> Weight { fn cancel_referendum() -> Weight {
Weight::from_ref_time(12_940_000 as u64) Weight::from_ref_time(13_183_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `r` is `[1, 99]`.
fn cancel_queued(r: u32, ) -> Weight {
Weight::from_ref_time(27_421_000 as u64)
// Standard Error: 2_000
.saturating_add(Weight::from_ref_time(808_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Democracy LowestUnbaked (r:1 w:1) // Storage: Democracy LowestUnbaked (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:0) // Storage: Democracy ReferendumCount (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base(r: u32, ) -> Weight { fn on_initialize_base(r: u32, ) -> Weight {
Weight::from_ref_time(9_602_000 as u64) Weight::from_ref_time(5_999_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_072
.saturating_add(Weight::from_ref_time(2_017_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_080_681 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -186,36 +155,36 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy LastTabledWasExternal (r:1 w:0) // Storage: Democracy LastTabledWasExternal (r:1 w:0)
// Storage: Democracy NextExternal (r:1 w:0) // Storage: Democracy NextExternal (r:1 w:0)
// Storage: Democracy PublicProps (r:1 w:0) // Storage: Democracy PublicProps (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base_with_launch_period(r: u32, ) -> Weight { fn on_initialize_base_with_launch_period(r: u32, ) -> Weight {
Weight::from_ref_time(12_548_000 as u64) Weight::from_ref_time(8_114_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_286
.saturating_add(Weight::from_ref_time(2_010_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_087_574 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy VotingOf (r:3 w:3) // Storage: Democracy VotingOf (r:3 w:3)
// Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[0, 99]`.
fn delegate(r: u32, ) -> Weight { fn delegate(r: u32, ) -> Weight {
Weight::from_ref_time(46_940_000 as u64) Weight::from_ref_time(40_509_000 as u64)
// Standard Error: 5_000 // Standard Error: 3_676
.saturating_add(Weight::from_ref_time(2_877_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_999_395 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
} }
// Storage: Democracy VotingOf (r:2 w:2) // Storage: Democracy VotingOf (r:2 w:2)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn undelegate(r: u32, ) -> Weight { fn undelegate(r: u32, ) -> Weight {
Weight::from_ref_time(27_418_000 as u64) Weight::from_ref_time(24_592_000 as u64)
// Standard Error: 5_000 // Standard Error: 2_506
.saturating_add(Weight::from_ref_time(2_872_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_932_469 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -223,76 +192,48 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
} }
// Storage: Democracy PublicProps (r:0 w:1) // Storage: Democracy PublicProps (r:0 w:1)
fn clear_public_proposals() -> Weight { fn clear_public_proposals() -> Weight {
Weight::from_ref_time(4_996_000 as u64) Weight::from_ref_time(5_070_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(28_635_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_imminent_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(21_474_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
// Storage: System Account (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn reap_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(36_399_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_remove(r: u32, ) -> Weight { fn unlock_remove(r: u32, ) -> Weight {
Weight::from_ref_time(32_139_000 as u64) Weight::from_ref_time(23_860_000 as u64)
// Standard Error: 0 // Standard Error: 2_624
.saturating_add(Weight::from_ref_time(30_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(129_209 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_set(r: u32, ) -> Weight { fn unlock_set(r: u32, ) -> Weight {
Weight::from_ref_time(31_338_000 as u64) Weight::from_ref_time(28_512_000 as u64)
// Standard Error: 1_000 // Standard Error: 619
.saturating_add(Weight::from_ref_time(70_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(84_477 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_vote(r: u32, ) -> Weight { fn remove_vote(r: u32, ) -> Weight {
Weight::from_ref_time(18_298_000 as u64) Weight::from_ref_time(15_612_000 as u64)
// Standard Error: 1_000 // Standard Error: 841
.saturating_add(Weight::from_ref_time(78_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(98_567 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_other_vote(r: u32, ) -> Weight { fn remove_other_vote(r: u32, ) -> Weight {
Weight::from_ref_time(18_456_000 as u64) Weight::from_ref_time(15_282_000 as u64)
// Standard Error: 1_000 // Standard Error: 1_040
.saturating_add(Weight::from_ref_time(75_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(104_928 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_preimage` //! Autogenerated weights for `pallet_preimage`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,103 +32,102 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/polkadot/src/weights/ // --output=./runtime/polkadot/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_preimage`. /// Weight functions for `pallet_preimage`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_preimage(s: u32, ) -> Weight { fn note_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(28_326_000 as u64)
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_116 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_requested_preimage(s: u32, ) -> Weight { fn note_requested_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(20_011_000 as u64)
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_114 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_no_deposit_preimage(s: u32, ) -> Weight { fn note_no_deposit_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(18_805_000 as u64)
// Standard Error: 0 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_116 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_preimage() -> Weight { fn unnote_preimage() -> Weight {
Weight::from_ref_time(40_028_000 as u64) Weight::from_ref_time(39_007_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_no_deposit_preimage() -> Weight { fn unnote_no_deposit_preimage() -> Weight {
Weight::from_ref_time(27_637_000 as u64) Weight::from_ref_time(27_523_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_preimage() -> Weight { fn request_preimage() -> Weight {
Weight::from_ref_time(37_505_000 as u64) Weight::from_ref_time(26_477_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_no_deposit_preimage() -> Weight { fn request_no_deposit_preimage() -> Weight {
Weight::from_ref_time(26_628_000 as u64) Weight::from_ref_time(13_236_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_unnoted_preimage() -> Weight { fn request_unnoted_preimage() -> Weight {
Weight::from_ref_time(17_156_000 as u64) Weight::from_ref_time(17_975_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_requested_preimage() -> Weight { fn request_requested_preimage() -> Weight {
Weight::from_ref_time(8_109_000 as u64) Weight::from_ref_time(8_295_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_preimage() -> Weight { fn unrequest_preimage() -> Weight {
Weight::from_ref_time(27_209_000 as u64) Weight::from_ref_time(26_186_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_unnoted_preimage() -> Weight { fn unrequest_unnoted_preimage() -> Weight {
Weight::from_ref_time(17_931_000 as u64) Weight::from_ref_time(8_176_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_multi_referenced_preimage() -> Weight { fn unrequest_multi_referenced_preimage() -> Weight {
Weight::from_ref_time(7_951_000 as u64) Weight::from_ref_time(8_005_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_scheduler` //! Autogenerated weights for `pallet_scheduler`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("polkadot-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,145 +32,69 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/polkadot/src/weights/ // --output=./runtime/polkadot/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_scheduler`. /// Weight functions for `pallet_scheduler`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:2 w:2) // Storage: Scheduler IncompleteSince (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1) fn service_agendas_base() -> Weight {
// Storage: Preimage StatusFor (r:1 w:1) Weight::from_ref_time(4_522_000 as u64)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(15_177_000 as u64)
// Standard Error: 21_000
.saturating_add(Weight::from_ref_time(18_354_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((4 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(12_632_000 as u64)
// Standard Error: 23_000
.saturating_add(Weight::from_ref_time(14_845_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(13_757_000 as u64)
// Standard Error: 20_000
.saturating_add(Weight::from_ref_time(15_871_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(15_338_000 as u64)
// Standard Error: 16_000
.saturating_add(Weight::from_ref_time(13_610_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(10_335_000 as u64)
// Standard Error: 5_000
.saturating_add(Weight::from_ref_time(5_073_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(10_095_000 as u64)
// Standard Error: 4_000
.saturating_add(Weight::from_ref_time(3_021_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named(s: u32, ) -> Weight {
Weight::from_ref_time(15_328_000 as u64)
// Standard Error: 9_000
.saturating_add(Weight::from_ref_time(9_601_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic(s: u32, ) -> Weight {
Weight::from_ref_time(18_306_000 as u64)
// Standard Error: 11_000
.saturating_add(Weight::from_ref_time(7_155_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named(s: u32, ) -> Weight {
Weight::from_ref_time(16_079_000 as u64)
// Standard Error: 6_000
.saturating_add(Weight::from_ref_time(6_321_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize(s: u32, ) -> Weight {
Weight::from_ref_time(16_074_000 as u64)
// Standard Error: 8_000
.saturating_add(Weight::from_ref_time(5_352_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 50]`.
fn service_agenda_base(s: u32, ) -> Weight {
Weight::from_ref_time(3_859_000 as u64)
// Standard Error: 2_692
.saturating_add(Weight::from_ref_time(618_992 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn service_task_base() -> Weight {
Weight::from_ref_time(12_288_000 as u64)
}
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[128, 4194304]`.
fn service_task_fetched(s: u32, ) -> Weight {
Weight::from_ref_time(23_105_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_126 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Lookup (r:0 w:1)
fn service_task_named() -> Weight {
Weight::from_ref_time(13_382_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Scheduler Agenda (r:1 w:1)
fn service_task_periodic() -> Weight {
Weight::from_ref_time(19_246_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn execute_dispatch_signed() -> Weight {
Weight::from_ref_time(3_714_000 as u64)
}
fn execute_dispatch_unsigned() -> Weight {
Weight::from_ref_time(3_667_000 as u64)
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 49]`.
fn schedule(s: u32, ) -> Weight { fn schedule(s: u32, ) -> Weight {
Weight::from_ref_time(19_480_000 as u64) Weight::from_ref_time(16_556_000 as u64)
// Standard Error: 2_000 // Standard Error: 3_431
.saturating_add(Weight::from_ref_time(76_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(659_506 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -178,19 +102,19 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Lookup (r:0 w:1) // Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel(s: u32, ) -> Weight { fn cancel(s: u32, ) -> Weight {
Weight::from_ref_time(19_669_000 as u64) Weight::from_ref_time(18_922_000 as u64)
// Standard Error: 2_000 // Standard Error: 1_665
.saturating_add(Weight::from_ref_time(892_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(586_420 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1) // Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 49]`.
fn schedule_named(s: u32, ) -> Weight { fn schedule_named(s: u32, ) -> Weight {
Weight::from_ref_time(24_633_000 as u64) Weight::from_ref_time(19_633_000 as u64)
// Standard Error: 5_000 // Standard Error: 3_740
.saturating_add(Weight::from_ref_time(81_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(692_772 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -198,9 +122,9 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel_named(s: u32, ) -> Weight { fn cancel_named(s: u32, ) -> Weight {
Weight::from_ref_time(22_707_000 as u64) Weight::from_ref_time(20_220_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_111
.saturating_add(Weight::from_ref_time(922_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(622_452 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
+15 -10
View File
@@ -70,8 +70,8 @@ use sp_mmr_primitives as mmr;
use sp_runtime::{ use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys, create_runtime_str, generic, impl_opaque_keys,
traits::{ traits::{
AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, Extrinsic as ExtrinsicT, AccountIdLookup, BlakeTwo256, Block as BlockT, ConstU32, ConvertInto,
Keccak256, OpaqueKeys, SaturatedConversion, Verify, Extrinsic as ExtrinsicT, Keccak256, OpaqueKeys, SaturatedConversion, Verify,
}, },
transaction_validity::{TransactionPriority, TransactionSource, TransactionValidity}, transaction_validity::{TransactionPriority, TransactionSource, TransactionValidity},
ApplyExtrinsicResult, KeyTypeId, Perbill, Percent, Permill, ApplyExtrinsicResult, KeyTypeId, Perbill, Percent, Permill,
@@ -216,12 +216,10 @@ impl pallet_scheduler::Config for Runtime {
type MaxScheduledPerBlock = MaxScheduledPerBlock; type MaxScheduledPerBlock = MaxScheduledPerBlock;
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>; type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
type OriginPrivilegeCmp = OriginPrivilegeCmp; type OriginPrivilegeCmp = OriginPrivilegeCmp;
type PreimageProvider = Preimage; type Preimages = Preimage;
type NoPreimagePostponement = NoPreimagePostponement;
} }
parameter_types! { parameter_types! {
pub const PreimageMaxSize: u32 = 4096 * 1024;
pub const PreimageBaseDeposit: Balance = deposit(2, 64); pub const PreimageBaseDeposit: Balance = deposit(2, 64);
pub const PreimageByteDeposit: Balance = deposit(0, 1); pub const PreimageByteDeposit: Balance = deposit(0, 1);
} }
@@ -231,7 +229,6 @@ impl pallet_preimage::Config for Runtime {
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type ManagerOrigin = EnsureRoot<AccountId>; type ManagerOrigin = EnsureRoot<AccountId>;
type MaxSize = PreimageMaxSize;
type BaseDeposit = PreimageBaseDeposit; type BaseDeposit = PreimageBaseDeposit;
type ByteDeposit = PreimageByteDeposit; type ByteDeposit = PreimageByteDeposit;
} }
@@ -399,7 +396,6 @@ parameter_types! {
} }
impl pallet_democracy::Config for Runtime { impl pallet_democracy::Config for Runtime {
type Proposal = RuntimeCall;
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type EnactmentPeriod = EnactmentPeriod; type EnactmentPeriod = EnactmentPeriod;
@@ -441,14 +437,15 @@ impl pallet_democracy::Config for Runtime {
// only do it once and it lasts only for the cooloff period. // only do it once and it lasts only for the cooloff period.
type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>; type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>;
type CooloffPeriod = CooloffPeriod; type CooloffPeriod = CooloffPeriod;
type PreimageByteDeposit = PreimageByteDeposit;
type OperationalPreimageOrigin = pallet_collective::EnsureMember<AccountId, CouncilCollective>;
type Slash = Treasury; type Slash = Treasury;
type Scheduler = Scheduler; type Scheduler = Scheduler;
type PalletsOrigin = OriginCaller; type PalletsOrigin = OriginCaller;
type MaxVotes = MaxVotes; type MaxVotes = MaxVotes;
type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>; type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>;
type MaxProposals = MaxProposals; type MaxProposals = MaxProposals;
type Preimages = Preimage;
type MaxDeposits = ConstU32<100>;
type MaxBlacklisted = ConstU32<100>;
} }
parameter_types! { parameter_types! {
@@ -1453,7 +1450,15 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>, frame_system::ChainContext<Runtime>,
Runtime, Runtime,
AllPalletsWithSystem, AllPalletsWithSystem,
(parachains_configuration::migration::v3::MigrateToV3<Runtime>,), (
// "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729>
pallet_preimage::migration::v1::Migration<Runtime>,
pallet_scheduler::migration::v3::MigrateToV4<Runtime>,
pallet_democracy::migrations::v1::Migration<Runtime>,
pallet_multisig::migrations::v1::MigrateToV1<Runtime>,
// "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091>
parachains_configuration::migration::v3::MigrateToV3<Runtime>,
),
>; >;
/// The payload being signed in transactions. /// The payload being signed in transactions.
pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>; pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_democracy` //! Autogenerated weights for `pallet_democracy`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-08-19, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,7 +32,7 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/rococo/src/weights/pallet_democracy.rs // --output=./runtime/rococo/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
@@ -49,134 +49,103 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
// Storage: Democracy DepositOf (r:0 w:1) // Storage: Democracy DepositOf (r:0 w:1)
fn propose() -> Weight { fn propose() -> Weight {
Weight::from_ref_time(37_453_000 as u64) Weight::from_ref_time(41_783_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
/// The range of component `s` is `[0, 100]`. fn second() -> Weight {
fn second(s: u32, ) -> Weight { Weight::from_ref_time(38_362_000 as u64)
Weight::from_ref_time(27_807_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(69_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_new() -> Weight {
fn vote_new(r: u32, ) -> Weight { Weight::from_ref_time(48_307_000 as u64)
Weight::from_ref_time(35_336_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(120_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. fn vote_existing() -> Weight {
fn vote_existing(r: u32, ) -> Weight { Weight::from_ref_time(48_500_000 as u64)
Weight::from_ref_time(35_107_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(123_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Cancellations (r:1 w:1) // Storage: Democracy Cancellations (r:1 w:1)
fn emergency_cancel() -> Weight { fn emergency_cancel() -> Weight {
Weight::from_ref_time(17_752_000 as u64) Weight::from_ref_time(20_294_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1)
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Blacklist (r:0 w:1) // Storage: Democracy Blacklist (r:0 w:1)
// Storage: Democracy DepositOf (r:1 w:1) fn blacklist() -> Weight {
// Storage: System Account (r:1 w:1) Weight::from_ref_time(75_191_000 as u64)
/// The range of component `p` is `[1, 100]`.
fn blacklist(p: u32, ) -> Weight {
Weight::from_ref_time(52_116_000 as u64)
// Standard Error: 6_000
.saturating_add(Weight::from_ref_time(194_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:0) // Storage: Democracy Blacklist (r:1 w:0)
/// The range of component `v` is `[1, 100]`. fn external_propose() -> Weight {
fn external_propose(v: u32, ) -> Weight { Weight::from_ref_time(16_369_000 as u64)
Weight::from_ref_time(10_194_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(10_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_majority() -> Weight { fn external_propose_majority() -> Weight {
Weight::from_ref_time(3_700_000 as u64) Weight::from_ref_time(4_767_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:0 w:1) // Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_default() -> Weight { fn external_propose_default() -> Weight {
Weight::from_ref_time(3_713_000 as u64) Weight::from_ref_time(4_866_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:1) // Storage: Democracy ReferendumCount (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn fast_track() -> Weight { fn fast_track() -> Weight {
Weight::from_ref_time(17_441_000 as u64) Weight::from_ref_time(19_986_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy NextExternal (r:1 w:1) // Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:1) // Storage: Democracy Blacklist (r:1 w:1)
/// The range of component `v` is `[0, 100]`. fn veto_external() -> Weight {
fn veto_external(v: u32, ) -> Weight { Weight::from_ref_time(25_291_000 as u64)
Weight::from_ref_time(18_536_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(42_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy PublicProps (r:1 w:1) // Storage: Democracy PublicProps (r:1 w:1)
// Storage: Democracy DepositOf (r:1 w:1) // Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `p` is `[1, 100]`. fn cancel_proposal() -> Weight {
fn cancel_proposal(p: u32, ) -> Weight { Weight::from_ref_time(63_703_000 as u64)
Weight::from_ref_time(42_174_000 as u64)
// Standard Error: 1_000
.saturating_add(Weight::from_ref_time(164_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:0 w:1) // Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn cancel_referendum() -> Weight { fn cancel_referendum() -> Weight {
Weight::from_ref_time(11_892_000 as u64) Weight::from_ref_time(13_235_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `r` is `[1, 99]`.
fn cancel_queued(r: u32, ) -> Weight {
Weight::from_ref_time(23_252_000 as u64)
// Standard Error: 5_000
.saturating_add(Weight::from_ref_time(2_242_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Democracy LowestUnbaked (r:1 w:1) // Storage: Democracy LowestUnbaked (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:0) // Storage: Democracy ReferendumCount (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base(r: u32, ) -> Weight { fn on_initialize_base(r: u32, ) -> Weight {
Weight::from_ref_time(1_457_000 as u64) Weight::from_ref_time(5_980_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_131
.saturating_add(Weight::from_ref_time(2_956_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_104_197 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -186,36 +155,36 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
// Storage: Democracy LastTabledWasExternal (r:1 w:0) // Storage: Democracy LastTabledWasExternal (r:1 w:0)
// Storage: Democracy NextExternal (r:1 w:0) // Storage: Democracy NextExternal (r:1 w:0)
// Storage: Democracy PublicProps (r:1 w:0) // Storage: Democracy PublicProps (r:1 w:0)
// Storage: Democracy ReferendumInfoOf (r:1 w:0) // Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn on_initialize_base_with_launch_period(r: u32, ) -> Weight { fn on_initialize_base_with_launch_period(r: u32, ) -> Weight {
Weight::from_ref_time(6_240_000 as u64) Weight::from_ref_time(8_351_000 as u64)
// Standard Error: 3_000 // Standard Error: 2_308
.saturating_add(Weight::from_ref_time(2_963_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_117_411 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy VotingOf (r:3 w:3) // Storage: Democracy VotingOf (r:3 w:3)
// Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
/// The range of component `r` is `[1, 99]`. // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[0, 99]`.
fn delegate(r: u32, ) -> Weight { fn delegate(r: u32, ) -> Weight {
Weight::from_ref_time(34_480_000 as u64) Weight::from_ref_time(40_303_000 as u64)
// Standard Error: 5_000 // Standard Error: 3_789
.saturating_add(Weight::from_ref_time(3_908_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(3_031_594 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
} }
// Storage: Democracy VotingOf (r:2 w:2) // Storage: Democracy VotingOf (r:2 w:2)
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn undelegate(r: u32, ) -> Weight { fn undelegate(r: u32, ) -> Weight {
Weight::from_ref_time(17_446_000 as u64) Weight::from_ref_time(24_342_000 as u64)
// Standard Error: 6_000 // Standard Error: 2_624
.saturating_add(Weight::from_ref_time(3_917_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(2_962_125 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -223,76 +192,48 @@ impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
} }
// Storage: Democracy PublicProps (r:0 w:1) // Storage: Democracy PublicProps (r:0 w:1)
fn clear_public_proposals() -> Weight { fn clear_public_proposals() -> Weight {
Weight::from_ref_time(3_727_000 as u64) Weight::from_ref_time(5_811_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(25_720_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
/// The range of component `b` is `[0, 16384]`.
fn note_imminent_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(17_884_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy Preimages (r:1 w:1)
// Storage: System Account (r:1 w:0)
/// The range of component `b` is `[0, 16384]`.
fn reap_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(24_695_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_remove(r: u32, ) -> Weight { fn unlock_remove(r: u32, ) -> Weight {
Weight::from_ref_time(22_207_000 as u64) Weight::from_ref_time(22_894_000 as u64)
// Standard Error: 0 // Standard Error: 2_967
.saturating_add(Weight::from_ref_time(36_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(142_001 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1) // Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1) // Storage: System Account (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[0, 99]`.
fn unlock_set(r: u32, ) -> Weight { fn unlock_set(r: u32, ) -> Weight {
Weight::from_ref_time(21_561_000 as u64) Weight::from_ref_time(28_227_000 as u64)
// Standard Error: 0 // Standard Error: 673
.saturating_add(Weight::from_ref_time(110_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(87_748 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_vote(r: u32, ) -> Weight { fn remove_vote(r: u32, ) -> Weight {
Weight::from_ref_time(13_204_000 as u64) Weight::from_ref_time(15_578_000 as u64)
// Standard Error: 0 // Standard Error: 1_035
.saturating_add(Weight::from_ref_time(105_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(105_378 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Democracy ReferendumInfoOf (r:1 w:1) // Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy VotingOf (r:1 w:1) // Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 99]`. /// The range of component `r` is `[1, 100]`.
fn remove_other_vote(r: u32, ) -> Weight { fn remove_other_vote(r: u32, ) -> Weight {
Weight::from_ref_time(12_994_000 as u64) Weight::from_ref_time(15_542_000 as u64)
// Standard Error: 0 // Standard Error: 1_104
.saturating_add(Weight::from_ref_time(106_000 as u64).saturating_mul(r as u64)) .saturating_add(Weight::from_ref_time(109_552 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_preimage` //! Autogenerated weights for `pallet_preimage`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-08-19, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,7 +32,7 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/rococo/src/weights/pallet_preimage.rs // --output=./runtime/rococo/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
@@ -44,91 +44,90 @@ use sp_std::marker::PhantomData;
/// Weight functions for `pallet_preimage`. /// Weight functions for `pallet_preimage`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_preimage(s: u32, ) -> Weight { fn note_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(29_017_000 as u64)
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_113 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_requested_preimage(s: u32, ) -> Weight { fn note_requested_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(19_793_000 as u64)
// Standard Error: 0 // Standard Error: 1
.saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_115 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_no_deposit_preimage(s: u32, ) -> Weight { fn note_no_deposit_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(18_854_000 as u64)
// Standard Error: 0 // Standard Error: 1
.saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_115 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_preimage() -> Weight { fn unnote_preimage() -> Weight {
Weight::from_ref_time(35_236_000 as u64) Weight::from_ref_time(38_886_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_no_deposit_preimage() -> Weight { fn unnote_no_deposit_preimage() -> Weight {
Weight::from_ref_time(23_396_000 as u64) Weight::from_ref_time(27_017_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_preimage() -> Weight { fn request_preimage() -> Weight {
Weight::from_ref_time(33_944_000 as u64) Weight::from_ref_time(25_041_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_no_deposit_preimage() -> Weight { fn request_no_deposit_preimage() -> Weight {
Weight::from_ref_time(22_151_000 as u64) Weight::from_ref_time(13_933_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_unnoted_preimage() -> Weight { fn request_unnoted_preimage() -> Weight {
Weight::from_ref_time(16_617_000 as u64) Weight::from_ref_time(17_760_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_requested_preimage() -> Weight { fn request_requested_preimage() -> Weight {
Weight::from_ref_time(6_552_000 as u64) Weight::from_ref_time(8_816_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_preimage() -> Weight { fn unrequest_preimage() -> Weight {
Weight::from_ref_time(23_787_000 as u64) Weight::from_ref_time(25_068_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_unnoted_preimage() -> Weight { fn unrequest_unnoted_preimage() -> Weight {
Weight::from_ref_time(16_327_000 as u64) Weight::from_ref_time(8_917_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_multi_referenced_preimage() -> Weight { fn unrequest_multi_referenced_preimage() -> Weight {
Weight::from_ref_time(6_289_000 as u64) Weight::from_ref_time(8_915_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_scheduler` //! Autogenerated weights for `pallet_scheduler`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-08-19, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,7 +32,7 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/rococo/src/weights/pallet_scheduler.rs // --output=./runtime/rococo/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
@@ -44,133 +44,57 @@ use sp_std::marker::PhantomData;
/// Weight functions for `pallet_scheduler`. /// Weight functions for `pallet_scheduler`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:2 w:2) // Storage: Scheduler IncompleteSince (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1) fn service_agendas_base() -> Weight {
// Storage: Preimage StatusFor (r:1 w:1) Weight::from_ref_time(4_700_000 as u64)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(1_256_000 as u64)
// Standard Error: 42_000
.saturating_add(Weight::from_ref_time(26_925_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((4 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(921_000 as u64)
// Standard Error: 35_000
.saturating_add(Weight::from_ref_time(21_922_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64)
// Standard Error: 62_000
.saturating_add(Weight::from_ref_time(24_926_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(10_674_000 as u64)
// Standard Error: 31_000
.saturating_add(Weight::from_ref_time(20_631_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(2_607_000 as u64)
// Standard Error: 20_000
.saturating_add(Weight::from_ref_time(10_009_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(3_381_000 as u64)
// Standard Error: 17_000
.saturating_add(Weight::from_ref_time(7_945_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named(s: u32, ) -> Weight {
Weight::from_ref_time(6_676_000 as u64)
// Standard Error: 25_000
.saturating_add(Weight::from_ref_time(16_966_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic(s: u32, ) -> Weight {
Weight::from_ref_time(8_899_000 as u64)
// Standard Error: 24_000
.saturating_add(Weight::from_ref_time(14_630_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named(s: u32, ) -> Weight {
Weight::from_ref_time(8_583_000 as u64)
// Standard Error: 19_000
.saturating_add(Weight::from_ref_time(12_228_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize(s: u32, ) -> Weight {
Weight::from_ref_time(8_544_000 as u64)
// Standard Error: 19_000
.saturating_add(Weight::from_ref_time(11_364_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 50]`.
fn service_agenda_base(s: u32, ) -> Weight {
Weight::from_ref_time(3_868_000 as u64)
// Standard Error: 2_747
.saturating_add(Weight::from_ref_time(629_992 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn service_task_base() -> Weight {
Weight::from_ref_time(12_316_000 as u64)
}
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[128, 4194304]`.
fn service_task_fetched(s: u32, ) -> Weight {
Weight::from_ref_time(24_103_000 as u64)
// Standard Error: 5
.saturating_add(Weight::from_ref_time(1_154 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Lookup (r:0 w:1)
fn service_task_named() -> Weight {
Weight::from_ref_time(13_408_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Scheduler Agenda (r:1 w:1)
fn service_task_periodic() -> Weight {
Weight::from_ref_time(19_302_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn execute_dispatch_signed() -> Weight {
Weight::from_ref_time(3_885_000 as u64)
}
fn execute_dispatch_unsigned() -> Weight {
Weight::from_ref_time(4_037_000 as u64)
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 49]`.
fn schedule(s: u32, ) -> Weight { fn schedule(s: u32, ) -> Weight {
Weight::from_ref_time(19_060_000 as u64) Weight::from_ref_time(16_768_000 as u64)
// Standard Error: 1_000 // Standard Error: 3_650
.saturating_add(Weight::from_ref_time(46_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(667_428 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -178,19 +102,19 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Lookup (r:0 w:1) // Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel(s: u32, ) -> Weight { fn cancel(s: u32, ) -> Weight {
Weight::from_ref_time(17_694_000 as u64) Weight::from_ref_time(19_239_000 as u64)
// Standard Error: 7_000 // Standard Error: 1_456
.saturating_add(Weight::from_ref_time(2_368_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(578_125 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1) // Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 49]`.
fn schedule_named(s: u32, ) -> Weight { fn schedule_named(s: u32, ) -> Weight {
Weight::from_ref_time(22_258_000 as u64) Weight::from_ref_time(19_065_000 as u64)
// Standard Error: 1_000 // Standard Error: 4_027
.saturating_add(Weight::from_ref_time(60_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(719_766 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -198,9 +122,9 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel_named(s: u32, ) -> Weight { fn cancel_named(s: u32, ) -> Weight {
Weight::from_ref_time(18_882_000 as u64) Weight::from_ref_time(20_039_000 as u64)
// Standard Error: 7_000 // Standard Error: 2_179
.saturating_add(Weight::from_ref_time(2_379_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(627_335 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
+6 -3
View File
@@ -181,8 +181,7 @@ impl pallet_scheduler::Config for Runtime {
type MaxScheduledPerBlock = MaxScheduledPerBlock; type MaxScheduledPerBlock = MaxScheduledPerBlock;
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>; type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
type OriginPrivilegeCmp = frame_support::traits::EqualPrivilegeOnly; type OriginPrivilegeCmp = frame_support::traits::EqualPrivilegeOnly;
type PreimageProvider = Preimage; type Preimages = Preimage;
type NoPreimagePostponement = NoPreimagePostponement;
} }
parameter_types! { parameter_types! {
@@ -196,7 +195,6 @@ impl pallet_preimage::Config for Runtime {
type RuntimeEvent = RuntimeEvent; type RuntimeEvent = RuntimeEvent;
type Currency = Balances; type Currency = Balances;
type ManagerOrigin = EnsureRoot<AccountId>; type ManagerOrigin = EnsureRoot<AccountId>;
type MaxSize = PreimageMaxSize;
type BaseDeposit = PreimageBaseDeposit; type BaseDeposit = PreimageBaseDeposit;
type ByteDeposit = PreimageByteDeposit; type ByteDeposit = PreimageByteDeposit;
} }
@@ -1215,6 +1213,11 @@ pub type Executive = frame_executive::Executive<
StakingMigrationV11OldPallet, StakingMigrationV11OldPallet,
>, >,
pallet_staking::migrations::v12::MigrateToV12<Runtime>, pallet_staking::migrations::v12::MigrateToV12<Runtime>,
// "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729>
pallet_preimage::migration::v1::Migration<Runtime>,
pallet_scheduler::migration::v3::MigrateToV4<Runtime>,
pallet_multisig::migrations::v1::MigrateToV1<Runtime>,
// "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091>
parachains_configuration::migration::v3::MigrateToV3<Runtime>, parachains_configuration::migration::v3::MigrateToV3<Runtime>,
), ),
>; >;
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_preimage` //! Autogenerated weights for `pallet_preimage`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("westend-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("westend-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,103 +32,102 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/westend/src/weights/ // --output=./runtime/westend/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_preimage`. /// Weight functions for `pallet_preimage`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_preimage(s: u32, ) -> Weight { fn note_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(28_888_000 as u64)
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_116 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_requested_preimage(s: u32, ) -> Weight { fn note_requested_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(20_640_000 as u64)
// Standard Error: 0 // Standard Error: 0
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_115 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage PreimageFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:0) // Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`. /// The range of component `s` is `[0, 4194304]`.
fn note_no_deposit_preimage(s: u32, ) -> Weight { fn note_no_deposit_preimage(s: u32, ) -> Weight {
Weight::from_ref_time(0 as u64) Weight::from_ref_time(19_203_000 as u64)
// Standard Error: 0 // Standard Error: 1
.saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(2_115 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_preimage() -> Weight { fn unnote_preimage() -> Weight {
Weight::from_ref_time(40_836_000 as u64) Weight::from_ref_time(41_563_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_no_deposit_preimage() -> Weight { fn unnote_no_deposit_preimage() -> Weight {
Weight::from_ref_time(28_774_000 as u64) Weight::from_ref_time(28_606_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_preimage() -> Weight { fn request_preimage() -> Weight {
Weight::from_ref_time(37_963_000 as u64) Weight::from_ref_time(27_447_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_no_deposit_preimage() -> Weight { fn request_no_deposit_preimage() -> Weight {
Weight::from_ref_time(25_754_000 as u64) Weight::from_ref_time(14_862_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_unnoted_preimage() -> Weight { fn request_unnoted_preimage() -> Weight {
Weight::from_ref_time(17_769_000 as u64) Weight::from_ref_time(18_337_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn request_requested_preimage() -> Weight { fn request_requested_preimage() -> Weight {
Weight::from_ref_time(9_214_000 as u64) Weight::from_ref_time(9_074_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1) // Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_preimage() -> Weight { fn unrequest_preimage() -> Weight {
Weight::from_ref_time(26_179_000 as u64) Weight::from_ref_time(28_192_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_unnoted_preimage() -> Weight { fn unrequest_unnoted_preimage() -> Weight {
Weight::from_ref_time(18_809_000 as u64) Weight::from_ref_time(9_012_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Preimage StatusFor (r:1 w:1) // Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_multi_referenced_preimage() -> Weight { fn unrequest_multi_referenced_preimage() -> Weight {
Weight::from_ref_time(8_759_000 as u64) Weight::from_ref_time(8_961_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_scheduler` //! Autogenerated weights for `pallet_scheduler`
//! //!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("westend-dev"), DB CACHE: 1024 //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("westend-dev"), DB CACHE: 1024
// Executed Command: // Executed Command:
@@ -32,145 +32,69 @@
// --execution=wasm // --execution=wasm
// --wasm-execution=compiled // --wasm-execution=compiled
// --header=./file_header.txt // --header=./file_header.txt
// --output=./runtime/westend/src/weights/ // --output=./runtime/westend/src/weights
#![cfg_attr(rustfmt, rustfmt_skip)] #![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)] #![allow(unused_parens)]
#![allow(unused_imports)] #![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}}; use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData; use sp_std::marker::PhantomData;
/// Weight functions for `pallet_scheduler`. /// Weight functions for `pallet_scheduler`.
pub struct WeightInfo<T>(PhantomData<T>); pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> { impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:2 w:2) // Storage: Scheduler IncompleteSince (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1) fn service_agendas_base() -> Weight {
// Storage: Preimage StatusFor (r:1 w:1) Weight::from_ref_time(4_399_000 as u64)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(16_183_000 as u64)
// Standard Error: 27_000
.saturating_add(Weight::from_ref_time(18_374_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((4 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(15_223_000 as u64)
// Standard Error: 28_000
.saturating_add(Weight::from_ref_time(15_096_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(13_305_000 as u64)
// Standard Error: 28_000
.saturating_add(Weight::from_ref_time(16_211_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_resolved(s: u32, ) -> Weight {
Weight::from_ref_time(15_574_000 as u64)
// Standard Error: 22_000
.saturating_add(Weight::from_ref_time(13_923_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(11_205_000 as u64)
// Standard Error: 9_000
.saturating_add(Weight::from_ref_time(5_044_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Preimage PreimageFor (r:1 w:0)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_aborted(s: u32, ) -> Weight {
Weight::from_ref_time(10_287_000 as u64)
// Standard Error: 5_000
.saturating_add(Weight::from_ref_time(3_072_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic_named(s: u32, ) -> Weight {
Weight::from_ref_time(14_489_000 as u64)
// Standard Error: 16_000
.saturating_add(Weight::from_ref_time(9_468_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((2 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_periodic(s: u32, ) -> Weight {
Weight::from_ref_time(16_768_000 as u64)
// Standard Error: 10_000
.saturating_add(Weight::from_ref_time(7_121_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize_named(s: u32, ) -> Weight {
Weight::from_ref_time(17_047_000 as u64)
// Standard Error: 9_000
.saturating_add(Weight::from_ref_time(6_192_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`.
fn on_initialize(s: u32, ) -> Weight {
Weight::from_ref_time(17_163_000 as u64)
// Standard Error: 10_000
.saturating_add(Weight::from_ref_time(5_300_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 50]`.
fn service_agenda_base(s: u32, ) -> Weight {
Weight::from_ref_time(3_771_000 as u64)
// Standard Error: 2_641
.saturating_add(Weight::from_ref_time(610_848 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn service_task_base() -> Weight {
Weight::from_ref_time(12_651_000 as u64)
}
// Storage: Preimage PreimageFor (r:1 w:1)
// Storage: Preimage StatusFor (r:1 w:1)
/// The range of component `s` is `[128, 4194304]`.
fn service_task_fetched(s: u32, ) -> Weight {
Weight::from_ref_time(24_280_000 as u64)
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_126 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Scheduler Lookup (r:0 w:1)
fn service_task_named() -> Weight {
Weight::from_ref_time(13_929_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Scheduler Agenda (r:1 w:1)
fn service_task_periodic() -> Weight {
Weight::from_ref_time(19_285_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn execute_dispatch_signed() -> Weight {
Weight::from_ref_time(4_026_000 as u64)
}
fn execute_dispatch_unsigned() -> Weight {
Weight::from_ref_time(4_078_000 as u64)
}
// Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 49]`.
fn schedule(s: u32, ) -> Weight { fn schedule(s: u32, ) -> Weight {
Weight::from_ref_time(19_757_000 as u64) Weight::from_ref_time(17_176_000 as u64)
// Standard Error: 1_000 // Standard Error: 3_203
.saturating_add(Weight::from_ref_time(75_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(645_757 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64))
} }
@@ -178,19 +102,19 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Lookup (r:0 w:1) // Storage: Scheduler Lookup (r:0 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel(s: u32, ) -> Weight { fn cancel(s: u32, ) -> Weight {
Weight::from_ref_time(20_399_000 as u64) Weight::from_ref_time(19_408_000 as u64)
// Standard Error: 2_000 // Standard Error: 1_645
.saturating_add(Weight::from_ref_time(880_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(575_558 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
// Storage: Scheduler Lookup (r:1 w:1) // Storage: Scheduler Lookup (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[0, 50]`. /// The range of component `s` is `[0, 49]`.
fn schedule_named(s: u32, ) -> Weight { fn schedule_named(s: u32, ) -> Weight {
Weight::from_ref_time(23_671_000 as u64) Weight::from_ref_time(20_173_000 as u64)
// Standard Error: 2_000 // Standard Error: 3_998
.saturating_add(Weight::from_ref_time(121_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(684_714 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }
@@ -198,9 +122,9 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Storage: Scheduler Agenda (r:1 w:1) // Storage: Scheduler Agenda (r:1 w:1)
/// The range of component `s` is `[1, 50]`. /// The range of component `s` is `[1, 50]`.
fn cancel_named(s: u32, ) -> Weight { fn cancel_named(s: u32, ) -> Weight {
Weight::from_ref_time(23_233_000 as u64) Weight::from_ref_time(20_330_000 as u64)
// Standard Error: 4_000 // Standard Error: 2_310
.saturating_add(Weight::from_ref_time(924_000 as u64).saturating_mul(s as u64)) .saturating_add(Weight::from_ref_time(621_196 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64))
} }