mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 06:57:24 +00:00
bbd51ce867
This PR reverts #2280 which introduced `TransactionExtension` to replace `SignedExtension`. As a result of the discussion [here](https://github.com/paritytech/polkadot-sdk/pull/3623#issuecomment-1986789700), the changes will be reverted for now with plans to reintroduce the concept in the future. --------- Signed-off-by: georgepisaltu <george.pisaltu@parity.io>
485 lines
28 KiB
Rust
Generated
485 lines
28 KiB
Rust
Generated
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Autogenerated weights for pallet_election_provider_multi_phase
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-06-16, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-e8ezs4ez-project-145-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_election_provider_multi_phase
|
|
// --no-storage-info
|
|
// --no-median-slopes
|
|
// --no-min-squares
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --output=./frame/election-provider-multi-phase/src/weights.rs
|
|
// --header=./HEADER-APACHE2
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
#![allow(missing_docs)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use core::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_election_provider_multi_phase.
|
|
pub trait WeightInfo {
|
|
fn on_initialize_nothing() -> Weight;
|
|
fn on_initialize_open_signed() -> Weight;
|
|
fn on_initialize_open_unsigned() -> Weight;
|
|
fn finalize_signed_phase_accept_solution() -> Weight;
|
|
fn finalize_signed_phase_reject_solution() -> Weight;
|
|
fn create_snapshot_internal(v: u32, t: u32, ) -> Weight;
|
|
fn elect_queued(a: u32, d: u32, ) -> Weight;
|
|
fn submit() -> Weight;
|
|
fn submit_unsigned(v: u32, t: u32, a: u32, d: u32, ) -> Weight;
|
|
fn feasibility_check(v: u32, t: u32, a: u32, d: u32, ) -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_election_provider_multi_phase using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: Staking CurrentEra (r:1 w:0)
|
|
/// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Staking CurrentPlannedSession (r:1 w:0)
|
|
/// Proof: Staking CurrentPlannedSession (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Staking ErasStartSessionIndex (r:1 w:0)
|
|
/// Proof: Staking ErasStartSessionIndex (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
|
|
/// Storage: Babe EpochIndex (r:1 w:0)
|
|
/// Proof: Babe EpochIndex (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Babe GenesisSlot (r:1 w:0)
|
|
/// Proof: Babe GenesisSlot (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Babe CurrentSlot (r:1 w:0)
|
|
/// Proof: Babe CurrentSlot (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Staking ForceEra (r:1 w:0)
|
|
/// Proof: Staking ForceEra (max_values: Some(1), max_size: Some(1), added: 496, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_nothing() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1028`
|
|
// Estimated: `3481`
|
|
// Minimum execution time: 22_089_000 picoseconds.
|
|
Weight::from_parts(22_677_000, 3481)
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_open_signed() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `148`
|
|
// Estimated: `1633`
|
|
// Minimum execution time: 11_986_000 picoseconds.
|
|
Weight::from_parts(12_445_000, 1633)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_open_unsigned() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `148`
|
|
// Estimated: `1633`
|
|
// Minimum execution time: 12_988_000 picoseconds.
|
|
Weight::from_parts(13_281_000, 1633)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn finalize_signed_phase_accept_solution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `174`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 32_659_000 picoseconds.
|
|
Weight::from_parts(33_281_000, 3593)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
fn finalize_signed_phase_reject_solution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `174`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 22_471_000 picoseconds.
|
|
Weight::from_parts(23_046_000, 3593)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
fn create_snapshot_internal(v: u32, _t: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 262_360_000 picoseconds.
|
|
Weight::from_parts(279_313_000, 0)
|
|
// Standard Error: 2_384
|
|
.saturating_add(Weight::from_parts(176_415, 0).saturating_mul(v.into()))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionIndices (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionNextIndex (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionNextIndex (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionsMap (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionsMap (max_values: None, max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn elect_queued(a: u32, d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `371 + a * (768 ±0) + d * (48 ±0)`
|
|
// Estimated: `3923 + a * (768 ±0) + d * (49 ±0)`
|
|
// Minimum execution time: 301_283_000 picoseconds.
|
|
Weight::from_parts(324_586_000, 3923)
|
|
// Standard Error: 4_763
|
|
.saturating_add(Weight::from_parts(279_812, 0).saturating_mul(a.into()))
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(8_u64))
|
|
.saturating_add(Weight::from_parts(0, 768).saturating_mul(a.into()))
|
|
.saturating_add(Weight::from_parts(0, 49).saturating_mul(d.into()))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: TransactionPayment NextFeeMultiplier (r:1 w:0)
|
|
/// Proof: TransactionPayment NextFeeMultiplier (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionIndices (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionNextIndex (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionNextIndex (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionsMap (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionsMap (max_values: None, max_size: None, mode: Measured)
|
|
fn submit() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `927`
|
|
// Estimated: `2412`
|
|
// Minimum execution time: 52_276_000 picoseconds.
|
|
Weight::from_parts(53_846_000, 2412)
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase MinimumUntrustedScore (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase MinimumUntrustedScore (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn submit_unsigned(v: u32, t: u32, a: u32, _d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `253 + t * (32 ±0) + v * (553 ±0)`
|
|
// Estimated: `1738 + t * (32 ±0) + v * (553 ±0)`
|
|
// Minimum execution time: 5_448_459_000 picoseconds.
|
|
Weight::from_parts(5_525_622_000, 1738)
|
|
// Standard Error: 21_478
|
|
.saturating_add(Weight::from_parts(256_345, 0).saturating_mul(v.into()))
|
|
// Standard Error: 63_648
|
|
.saturating_add(Weight::from_parts(5_103_224, 0).saturating_mul(a.into()))
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into()))
|
|
.saturating_add(Weight::from_parts(0, 553).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase MinimumUntrustedScore (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase MinimumUntrustedScore (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn feasibility_check(v: u32, t: u32, a: u32, _d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `228 + t * (32 ±0) + v * (553 ±0)`
|
|
// Estimated: `1713 + t * (32 ±0) + v * (553 ±0)`
|
|
// Minimum execution time: 4_724_399_000 picoseconds.
|
|
Weight::from_parts(4_886_472_000, 1713)
|
|
// Standard Error: 15_220
|
|
.saturating_add(Weight::from_parts(365_569, 0).saturating_mul(v.into()))
|
|
// Standard Error: 45_104
|
|
.saturating_add(Weight::from_parts(3_176_675, 0).saturating_mul(a.into()))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into()))
|
|
.saturating_add(Weight::from_parts(0, 553).saturating_mul(v.into()))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
/// Storage: Staking CurrentEra (r:1 w:0)
|
|
/// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Staking CurrentPlannedSession (r:1 w:0)
|
|
/// Proof: Staking CurrentPlannedSession (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Staking ErasStartSessionIndex (r:1 w:0)
|
|
/// Proof: Staking ErasStartSessionIndex (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
|
|
/// Storage: Babe EpochIndex (r:1 w:0)
|
|
/// Proof: Babe EpochIndex (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Babe GenesisSlot (r:1 w:0)
|
|
/// Proof: Babe GenesisSlot (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Babe CurrentSlot (r:1 w:0)
|
|
/// Proof: Babe CurrentSlot (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen)
|
|
/// Storage: Staking ForceEra (r:1 w:0)
|
|
/// Proof: Staking ForceEra (max_values: Some(1), max_size: Some(1), added: 496, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_nothing() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1028`
|
|
// Estimated: `3481`
|
|
// Minimum execution time: 22_089_000 picoseconds.
|
|
Weight::from_parts(22_677_000, 3481)
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_open_signed() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `148`
|
|
// Estimated: `1633`
|
|
// Minimum execution time: 11_986_000 picoseconds.
|
|
Weight::from_parts(12_445_000, 1633)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn on_initialize_open_unsigned() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `148`
|
|
// Estimated: `1633`
|
|
// Minimum execution time: 12_988_000 picoseconds.
|
|
Weight::from_parts(13_281_000, 1633)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
fn finalize_signed_phase_accept_solution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `174`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 32_659_000 picoseconds.
|
|
Weight::from_parts(33_281_000, 3593)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
fn finalize_signed_phase_reject_solution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `174`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 22_471_000 picoseconds.
|
|
Weight::from_parts(23_046_000, 3593)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
fn create_snapshot_internal(v: u32, _t: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 262_360_000 picoseconds.
|
|
Weight::from_parts(279_313_000, 0)
|
|
// Standard Error: 2_384
|
|
.saturating_add(Weight::from_parts(176_415, 0).saturating_mul(v.into()))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionIndices (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionNextIndex (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionNextIndex (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionsMap (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionsMap (max_values: None, max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn elect_queued(a: u32, d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `371 + a * (768 ±0) + d * (48 ±0)`
|
|
// Estimated: `3923 + a * (768 ±0) + d * (49 ±0)`
|
|
// Minimum execution time: 301_283_000 picoseconds.
|
|
Weight::from_parts(324_586_000, 3923)
|
|
// Standard Error: 4_763
|
|
.saturating_add(Weight::from_parts(279_812, 0).saturating_mul(a.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(8_u64))
|
|
.saturating_add(Weight::from_parts(0, 768).saturating_mul(a.into()))
|
|
.saturating_add(Weight::from_parts(0, 49).saturating_mul(d.into()))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: TransactionPayment NextFeeMultiplier (r:1 w:0)
|
|
/// Proof: TransactionPayment NextFeeMultiplier (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionIndices (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionNextIndex (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionNextIndex (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SignedSubmissionsMap (r:0 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SignedSubmissionsMap (max_values: None, max_size: None, mode: Measured)
|
|
fn submit() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `927`
|
|
// Estimated: `2412`
|
|
// Minimum execution time: 52_276_000 picoseconds.
|
|
Weight::from_parts(53_846_000, 2412)
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase QueuedSolution (r:1 w:1)
|
|
/// Proof Skipped: ElectionProviderMultiPhase QueuedSolution (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase SnapshotMetadata (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase SnapshotMetadata (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase MinimumUntrustedScore (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase MinimumUntrustedScore (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn submit_unsigned(v: u32, t: u32, a: u32, _d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `253 + t * (32 ±0) + v * (553 ±0)`
|
|
// Estimated: `1738 + t * (32 ±0) + v * (553 ±0)`
|
|
// Minimum execution time: 5_448_459_000 picoseconds.
|
|
Weight::from_parts(5_525_622_000, 1738)
|
|
// Standard Error: 21_478
|
|
.saturating_add(Weight::from_parts(256_345, 0).saturating_mul(v.into()))
|
|
// Standard Error: 63_648
|
|
.saturating_add(Weight::from_parts(5_103_224, 0).saturating_mul(a.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into()))
|
|
.saturating_add(Weight::from_parts(0, 553).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: ElectionProviderMultiPhase DesiredTargets (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase DesiredTargets (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Snapshot (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Snapshot (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// Storage: ElectionProviderMultiPhase MinimumUntrustedScore (r:1 w:0)
|
|
/// Proof Skipped: ElectionProviderMultiPhase MinimumUntrustedScore (max_values: Some(1), max_size: None, mode: Measured)
|
|
/// The range of component `v` is `[1000, 2000]`.
|
|
/// The range of component `t` is `[500, 1000]`.
|
|
/// The range of component `a` is `[500, 800]`.
|
|
/// The range of component `d` is `[200, 400]`.
|
|
fn feasibility_check(v: u32, t: u32, a: u32, _d: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `228 + t * (32 ±0) + v * (553 ±0)`
|
|
// Estimated: `1713 + t * (32 ±0) + v * (553 ±0)`
|
|
// Minimum execution time: 4_724_399_000 picoseconds.
|
|
Weight::from_parts(4_886_472_000, 1713)
|
|
// Standard Error: 15_220
|
|
.saturating_add(Weight::from_parts(365_569, 0).saturating_mul(v.into()))
|
|
// Standard Error: 45_104
|
|
.saturating_add(Weight::from_parts(3_176_675, 0).saturating_mul(a.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into()))
|
|
.saturating_add(Weight::from_parts(0, 553).saturating_mul(v.into()))
|
|
}
|
|
}
|