mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-02 07:07:24 +00:00
8e7adaf283
* add new trait * implement DispatchableWithStorageLayer * at least one transactional * all dispatch is at least transactional * storage_layer api * add test * storage layer tests * deprecate transactional tag * i guess no reason to deprecate * remove transactional from batch_all * update tests * extend trait * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_staking --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/staking/src/weights.rs --template=./.maintain/frame-weight-template.hbs * fix copy paste name * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_utility --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/utility/src/weights.rs --template=./.maintain/frame-weight-template.hbs * Create run_all_benchmarks.sh * uncomment build * update number of steps and repeats * add skip build * Update run_all_benchmarks.sh * Update run_all_benchmarks.sh * new benchmarks * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs * weights * Update dispatch.rs * doc link * decl_macro support Co-authored-by: Parity Bot <admin@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
851 lines
35 KiB
Rust
851 lines
35 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2022 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_staking
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2022-05-24, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! 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_staking
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
// --output=./frame/staking/src/weights.rs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_staking.
|
|
pub trait WeightInfo {
|
|
fn bond() -> Weight;
|
|
fn bond_extra() -> Weight;
|
|
fn unbond() -> Weight;
|
|
fn withdraw_unbonded_update(s: u32, ) -> Weight;
|
|
fn withdraw_unbonded_kill(s: u32, ) -> Weight;
|
|
fn validate() -> Weight;
|
|
fn kick(k: u32, ) -> Weight;
|
|
fn nominate(n: u32, ) -> Weight;
|
|
fn chill() -> Weight;
|
|
fn set_payee() -> Weight;
|
|
fn set_controller() -> Weight;
|
|
fn set_validator_count() -> Weight;
|
|
fn force_no_eras() -> Weight;
|
|
fn force_new_era() -> Weight;
|
|
fn force_new_era_always() -> Weight;
|
|
fn set_invulnerables(v: u32, ) -> Weight;
|
|
fn force_unstake(s: u32, ) -> Weight;
|
|
fn cancel_deferred_slash(s: u32, ) -> Weight;
|
|
fn payout_stakers_dead_controller(n: u32, ) -> Weight;
|
|
fn payout_stakers_alive_staked(n: u32, ) -> Weight;
|
|
fn rebond(l: u32, ) -> Weight;
|
|
fn set_history_depth(e: u32, ) -> Weight;
|
|
fn reap_stash(s: u32, ) -> Weight;
|
|
fn new_era(v: u32, n: u32, ) -> Weight;
|
|
fn get_npos_voters(v: u32, n: u32, s: u32, ) -> Weight;
|
|
fn get_npos_targets(v: u32, ) -> Weight;
|
|
fn set_staking_configs_all_set() -> Weight;
|
|
fn set_staking_configs_all_remove() -> Weight;
|
|
fn chill_other() -> Weight;
|
|
fn force_apply_min_commission() -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_staking using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn bond() -> Weight {
|
|
(43_992_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn bond_extra() -> Weight {
|
|
(75_827_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(8 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(7 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking Nominators (r:1 w:0)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn unbond() -> Weight {
|
|
(81_075_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(12 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(8 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn withdraw_unbonded_update(s: u32, ) -> Weight {
|
|
(35_763_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((57_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn withdraw_unbonded_kill(_s: u32, ) -> Weight {
|
|
(66_938_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(13 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(11 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking MinValidatorBond (r:1 w:0)
|
|
// Storage: Staking MinCommission (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:1 w:1)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Staking CounterForValidators (r:1 w:1)
|
|
fn validate() -> Weight {
|
|
(52_943_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(11 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
fn kick(k: u32, ) -> Weight {
|
|
(23_264_000 as Weight)
|
|
// Standard Error: 11_000
|
|
.saturating_add((8_006_000 as Weight).saturating_mul(k as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(k as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(k as Weight)))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:1 w:0)
|
|
// Storage: Staking Validators (r:2 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
fn nominate(n: u32, ) -> Weight {
|
|
(56_596_000 as Weight)
|
|
// Standard Error: 14_000
|
|
.saturating_add((3_644_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(12 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
fn chill() -> Weight {
|
|
(51_117_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(8 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn set_payee() -> Weight {
|
|
(11_223_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:2 w:2)
|
|
fn set_controller() -> Weight {
|
|
(19_826_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Staking ValidatorCount (r:0 w:1)
|
|
fn set_validator_count() -> Weight {
|
|
(3_789_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_no_eras() -> Weight {
|
|
(3_793_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_new_era() -> Weight {
|
|
(3_802_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_new_era_always() -> Weight {
|
|
(3_762_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Invulnerables (r:0 w:1)
|
|
fn set_invulnerables(v: u32, ) -> Weight {
|
|
(4_318_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((10_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Ledger (r:0 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
// Storage: Staking SpanSlash (r:0 w:2)
|
|
fn force_unstake(s: u32, ) -> Weight {
|
|
(65_265_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((1_029_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(11 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(12 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: Staking UnappliedSlashes (r:1 w:1)
|
|
fn cancel_deferred_slash(s: u32, ) -> Weight {
|
|
(903_312_000 as Weight)
|
|
// Standard Error: 56_000
|
|
.saturating_add((4_968_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasValidatorReward (r:1 w:0)
|
|
// Storage: Staking Bonded (r:2 w:0)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking ErasStakersClipped (r:1 w:0)
|
|
// Storage: Staking ErasRewardPoints (r:1 w:0)
|
|
// Storage: Staking ErasValidatorPrefs (r:1 w:0)
|
|
// Storage: Staking Payee (r:2 w:0)
|
|
// Storage: System Account (r:2 w:2)
|
|
fn payout_stakers_dead_controller(n: u32, ) -> Weight {
|
|
(87_569_000 as Weight)
|
|
// Standard Error: 14_000
|
|
.saturating_add((24_232_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(10 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((3 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(n as Weight)))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasValidatorReward (r:1 w:0)
|
|
// Storage: Staking Bonded (r:2 w:0)
|
|
// Storage: Staking Ledger (r:2 w:2)
|
|
// Storage: Staking ErasStakersClipped (r:1 w:0)
|
|
// Storage: Staking ErasRewardPoints (r:1 w:0)
|
|
// Storage: Staking ErasValidatorPrefs (r:1 w:0)
|
|
// Storage: Staking Payee (r:2 w:0)
|
|
// Storage: System Account (r:2 w:2)
|
|
// Storage: Balances Locks (r:2 w:2)
|
|
fn payout_stakers_alive_staked(n: u32, ) -> Weight {
|
|
(98_839_000 as Weight)
|
|
// Standard Error: 21_000
|
|
.saturating_add((34_480_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(11 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((5 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((3 as Weight).saturating_mul(n as Weight)))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn rebond(l: u32, ) -> Weight {
|
|
(74_865_000 as Weight)
|
|
// Standard Error: 3_000
|
|
.saturating_add((64_000 as Weight).saturating_mul(l as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(9 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(8 as Weight))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:1)
|
|
// Storage: Staking ErasStakersClipped (r:0 w:2)
|
|
// Storage: Staking ErasValidatorPrefs (r:0 w:2)
|
|
// Storage: Staking ErasValidatorReward (r:0 w:1)
|
|
// Storage: Staking ErasRewardPoints (r:0 w:1)
|
|
// Storage: Staking ErasStakers (r:0 w:2)
|
|
// Storage: Staking ErasTotalStake (r:0 w:1)
|
|
// Storage: Staking ErasStartSessionIndex (r:0 w:1)
|
|
fn set_history_depth(e: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 62_000
|
|
.saturating_add((22_829_000 as Weight).saturating_mul(e as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((7 as Weight).saturating_mul(e as Weight)))
|
|
}
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:1)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
// Storage: Staking SpanSlash (r:0 w:1)
|
|
fn reap_stash(s: u32, ) -> Weight {
|
|
(70_933_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((1_021_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(12 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(12 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: BagsList CounterForListNodes (r:1 w:0)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:200 w:0)
|
|
// Storage: BagsList ListNodes (r:101 w:0)
|
|
// Storage: Staking Nominators (r:101 w:0)
|
|
// Storage: Staking Validators (r:2 w:0)
|
|
// Storage: Staking Bonded (r:101 w:0)
|
|
// Storage: Staking Ledger (r:101 w:0)
|
|
// Storage: Staking CounterForValidators (r:1 w:0)
|
|
// Storage: Staking ValidatorCount (r:1 w:0)
|
|
// Storage: Staking MinimumValidatorCount (r:1 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:1)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasStakersClipped (r:0 w:1)
|
|
// Storage: Staking ErasValidatorPrefs (r:0 w:1)
|
|
// Storage: Staking ErasStakers (r:0 w:1)
|
|
// Storage: Staking ErasTotalStake (r:0 w:1)
|
|
// Storage: Staking ErasStartSessionIndex (r:0 w:1)
|
|
fn new_era(v: u32, n: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 897_000
|
|
.saturating_add((213_100_000 as Weight).saturating_mul(v as Weight))
|
|
// Standard Error: 45_000
|
|
.saturating_add((31_123_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(208 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((5 as Weight).saturating_mul(v as Weight)))
|
|
.saturating_add(T::DbWeight::get().reads((4 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((3 as Weight).saturating_mul(v as Weight)))
|
|
}
|
|
// Storage: BagsList CounterForListNodes (r:1 w:0)
|
|
// Storage: Staking SlashingSpans (r:21 w:0)
|
|
// Storage: BagsList ListBags (r:200 w:0)
|
|
// Storage: BagsList ListNodes (r:1500 w:0)
|
|
// Storage: Staking Nominators (r:1500 w:0)
|
|
// Storage: Staking Validators (r:500 w:0)
|
|
// Storage: Staking Bonded (r:1500 w:0)
|
|
// Storage: Staking Ledger (r:1500 w:0)
|
|
fn get_npos_voters(v: u32, n: u32, s: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 116_000
|
|
.saturating_add((23_745_000 as Weight).saturating_mul(v as Weight))
|
|
// Standard Error: 116_000
|
|
.saturating_add((22_497_000 as Weight).saturating_mul(n as Weight))
|
|
// Standard Error: 3_968_000
|
|
.saturating_add((20_676_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(202 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((5 as Weight).saturating_mul(v as Weight)))
|
|
.saturating_add(T::DbWeight::get().reads((4 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: Staking Validators (r:501 w:0)
|
|
fn get_npos_targets(v: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 36_000
|
|
.saturating_add((8_097_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(v as Weight)))
|
|
}
|
|
// Storage: Staking MinCommission (r:0 w:1)
|
|
// Storage: Staking MinValidatorBond (r:0 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:0 w:1)
|
|
// Storage: Staking ChillThreshold (r:0 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:0 w:1)
|
|
// Storage: Staking MinNominatorBond (r:0 w:1)
|
|
fn set_staking_configs_all_set() -> Weight {
|
|
(7_041_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking MinCommission (r:0 w:1)
|
|
// Storage: Staking MinValidatorBond (r:0 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:0 w:1)
|
|
// Storage: Staking ChillThreshold (r:0 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:0 w:1)
|
|
// Storage: Staking MinNominatorBond (r:0 w:1)
|
|
fn set_staking_configs_all_remove() -> Weight {
|
|
(6_495_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking ChillThreshold (r:1 w:0)
|
|
// Storage: Staking MaxNominatorsCount (r:1 w:0)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
fn chill_other() -> Weight {
|
|
(62_014_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(11 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking MinCommission (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:1)
|
|
fn force_apply_min_commission() -> Weight {
|
|
(12_814_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn bond() -> Weight {
|
|
(43_992_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn bond_extra() -> Weight {
|
|
(75_827_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(8 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(7 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking Nominators (r:1 w:0)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn unbond() -> Weight {
|
|
(81_075_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(12 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(8 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn withdraw_unbonded_update(s: u32, ) -> Weight {
|
|
(35_763_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((57_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn withdraw_unbonded_kill(_s: u32, ) -> Weight {
|
|
(66_938_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(13 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(11 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking MinValidatorBond (r:1 w:0)
|
|
// Storage: Staking MinCommission (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:1 w:1)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Staking CounterForValidators (r:1 w:1)
|
|
fn validate() -> Weight {
|
|
(52_943_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(11 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
fn kick(k: u32, ) -> Weight {
|
|
(23_264_000 as Weight)
|
|
// Standard Error: 11_000
|
|
.saturating_add((8_006_000 as Weight).saturating_mul(k as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(k as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(k as Weight)))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:1 w:0)
|
|
// Storage: Staking Validators (r:2 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
fn nominate(n: u32, ) -> Weight {
|
|
(56_596_000 as Weight)
|
|
// Standard Error: 14_000
|
|
.saturating_add((3_644_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(12 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
fn chill() -> Weight {
|
|
(51_117_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(8 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
fn set_payee() -> Weight {
|
|
(11_223_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:2 w:2)
|
|
fn set_controller() -> Weight {
|
|
(19_826_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Staking ValidatorCount (r:0 w:1)
|
|
fn set_validator_count() -> Weight {
|
|
(3_789_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_no_eras() -> Weight {
|
|
(3_793_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_new_era() -> Weight {
|
|
(3_802_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking ForceEra (r:0 w:1)
|
|
fn force_new_era_always() -> Weight {
|
|
(3_762_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Invulnerables (r:0 w:1)
|
|
fn set_invulnerables(v: u32, ) -> Weight {
|
|
(4_318_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((10_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Ledger (r:0 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
// Storage: Staking SpanSlash (r:0 w:2)
|
|
fn force_unstake(s: u32, ) -> Weight {
|
|
(65_265_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((1_029_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(11 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(12 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: Staking UnappliedSlashes (r:1 w:1)
|
|
fn cancel_deferred_slash(s: u32, ) -> Weight {
|
|
(903_312_000 as Weight)
|
|
// Standard Error: 56_000
|
|
.saturating_add((4_968_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasValidatorReward (r:1 w:0)
|
|
// Storage: Staking Bonded (r:2 w:0)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking ErasStakersClipped (r:1 w:0)
|
|
// Storage: Staking ErasRewardPoints (r:1 w:0)
|
|
// Storage: Staking ErasValidatorPrefs (r:1 w:0)
|
|
// Storage: Staking Payee (r:2 w:0)
|
|
// Storage: System Account (r:2 w:2)
|
|
fn payout_stakers_dead_controller(n: u32, ) -> Weight {
|
|
(87_569_000 as Weight)
|
|
// Standard Error: 14_000
|
|
.saturating_add((24_232_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(10 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((3 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(n as Weight)))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasValidatorReward (r:1 w:0)
|
|
// Storage: Staking Bonded (r:2 w:0)
|
|
// Storage: Staking Ledger (r:2 w:2)
|
|
// Storage: Staking ErasStakersClipped (r:1 w:0)
|
|
// Storage: Staking ErasRewardPoints (r:1 w:0)
|
|
// Storage: Staking ErasValidatorPrefs (r:1 w:0)
|
|
// Storage: Staking Payee (r:2 w:0)
|
|
// Storage: System Account (r:2 w:2)
|
|
// Storage: Balances Locks (r:2 w:2)
|
|
fn payout_stakers_alive_staked(n: u32, ) -> Weight {
|
|
(98_839_000 as Weight)
|
|
// Standard Error: 21_000
|
|
.saturating_add((34_480_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(11 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((5 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((3 as Weight).saturating_mul(n as Weight)))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:3 w:3)
|
|
// Storage: Staking Bonded (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:2 w:2)
|
|
fn rebond(l: u32, ) -> Weight {
|
|
(74_865_000 as Weight)
|
|
// Standard Error: 3_000
|
|
.saturating_add((64_000 as Weight).saturating_mul(l as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(9 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(8 as Weight))
|
|
}
|
|
// Storage: Staking CurrentEra (r:1 w:0)
|
|
// Storage: Staking HistoryDepth (r:1 w:1)
|
|
// Storage: Staking ErasStakersClipped (r:0 w:2)
|
|
// Storage: Staking ErasValidatorPrefs (r:0 w:2)
|
|
// Storage: Staking ErasValidatorReward (r:0 w:1)
|
|
// Storage: Staking ErasRewardPoints (r:0 w:1)
|
|
// Storage: Staking ErasStakers (r:0 w:2)
|
|
// Storage: Staking ErasTotalStake (r:0 w:1)
|
|
// Storage: Staking ErasStartSessionIndex (r:0 w:1)
|
|
fn set_history_depth(e: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 62_000
|
|
.saturating_add((22_829_000 as Weight).saturating_mul(e as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((7 as Weight).saturating_mul(e as Weight)))
|
|
}
|
|
// Storage: System Account (r:1 w:1)
|
|
// Storage: Staking Bonded (r:1 w:1)
|
|
// Storage: Staking Ledger (r:1 w:1)
|
|
// Storage: Staking SlashingSpans (r:1 w:1)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
// Storage: Balances Locks (r:1 w:1)
|
|
// Storage: Staking Payee (r:0 w:1)
|
|
// Storage: Staking SpanSlash (r:0 w:1)
|
|
fn reap_stash(s: u32, ) -> Weight {
|
|
(70_933_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((1_021_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(12 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(12 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: BagsList CounterForListNodes (r:1 w:0)
|
|
// Storage: Staking SlashingSpans (r:1 w:0)
|
|
// Storage: BagsList ListBags (r:200 w:0)
|
|
// Storage: BagsList ListNodes (r:101 w:0)
|
|
// Storage: Staking Nominators (r:101 w:0)
|
|
// Storage: Staking Validators (r:2 w:0)
|
|
// Storage: Staking Bonded (r:101 w:0)
|
|
// Storage: Staking Ledger (r:101 w:0)
|
|
// Storage: Staking CounterForValidators (r:1 w:0)
|
|
// Storage: Staking ValidatorCount (r:1 w:0)
|
|
// Storage: Staking MinimumValidatorCount (r:1 w:0)
|
|
// Storage: Staking CurrentEra (r:1 w:1)
|
|
// Storage: Staking HistoryDepth (r:1 w:0)
|
|
// Storage: Staking ErasStakersClipped (r:0 w:1)
|
|
// Storage: Staking ErasValidatorPrefs (r:0 w:1)
|
|
// Storage: Staking ErasStakers (r:0 w:1)
|
|
// Storage: Staking ErasTotalStake (r:0 w:1)
|
|
// Storage: Staking ErasStartSessionIndex (r:0 w:1)
|
|
fn new_era(v: u32, n: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 897_000
|
|
.saturating_add((213_100_000 as Weight).saturating_mul(v as Weight))
|
|
// Standard Error: 45_000
|
|
.saturating_add((31_123_000 as Weight).saturating_mul(n as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(208 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((5 as Weight).saturating_mul(v as Weight)))
|
|
.saturating_add(RocksDbWeight::get().reads((4 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((3 as Weight).saturating_mul(v as Weight)))
|
|
}
|
|
// Storage: BagsList CounterForListNodes (r:1 w:0)
|
|
// Storage: Staking SlashingSpans (r:21 w:0)
|
|
// Storage: BagsList ListBags (r:200 w:0)
|
|
// Storage: BagsList ListNodes (r:1500 w:0)
|
|
// Storage: Staking Nominators (r:1500 w:0)
|
|
// Storage: Staking Validators (r:500 w:0)
|
|
// Storage: Staking Bonded (r:1500 w:0)
|
|
// Storage: Staking Ledger (r:1500 w:0)
|
|
fn get_npos_voters(v: u32, n: u32, s: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 116_000
|
|
.saturating_add((23_745_000 as Weight).saturating_mul(v as Weight))
|
|
// Standard Error: 116_000
|
|
.saturating_add((22_497_000 as Weight).saturating_mul(n as Weight))
|
|
// Standard Error: 3_968_000
|
|
.saturating_add((20_676_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(202 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((5 as Weight).saturating_mul(v as Weight)))
|
|
.saturating_add(RocksDbWeight::get().reads((4 as Weight).saturating_mul(n as Weight)))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(s as Weight)))
|
|
}
|
|
// Storage: Staking Validators (r:501 w:0)
|
|
fn get_npos_targets(v: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 36_000
|
|
.saturating_add((8_097_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(v as Weight)))
|
|
}
|
|
// Storage: Staking MinCommission (r:0 w:1)
|
|
// Storage: Staking MinValidatorBond (r:0 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:0 w:1)
|
|
// Storage: Staking ChillThreshold (r:0 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:0 w:1)
|
|
// Storage: Staking MinNominatorBond (r:0 w:1)
|
|
fn set_staking_configs_all_set() -> Weight {
|
|
(7_041_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking MinCommission (r:0 w:1)
|
|
// Storage: Staking MinValidatorBond (r:0 w:1)
|
|
// Storage: Staking MaxValidatorsCount (r:0 w:1)
|
|
// Storage: Staking ChillThreshold (r:0 w:1)
|
|
// Storage: Staking MaxNominatorsCount (r:0 w:1)
|
|
// Storage: Staking MinNominatorBond (r:0 w:1)
|
|
fn set_staking_configs_all_remove() -> Weight {
|
|
(6_495_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking Ledger (r:1 w:0)
|
|
// Storage: Staking Nominators (r:1 w:1)
|
|
// Storage: Staking ChillThreshold (r:1 w:0)
|
|
// Storage: Staking MaxNominatorsCount (r:1 w:0)
|
|
// Storage: Staking CounterForNominators (r:1 w:1)
|
|
// Storage: Staking MinNominatorBond (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:0)
|
|
// Storage: BagsList ListNodes (r:2 w:2)
|
|
// Storage: BagsList ListBags (r:1 w:1)
|
|
// Storage: BagsList CounterForListNodes (r:1 w:1)
|
|
fn chill_other() -> Weight {
|
|
(62_014_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(11 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
// Storage: Staking MinCommission (r:1 w:0)
|
|
// Storage: Staking Validators (r:1 w:1)
|
|
fn force_apply_min_commission() -> Weight {
|
|
(12_814_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
}
|