mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 01:21:01 +00:00
00b85c51df
helps https://github.com/paritytech/polkadot-sdk/issues/439. closes https://github.com/paritytech/polkadot-sdk/issues/473. PR link in the older substrate repository: https://github.com/paritytech/substrate/pull/13498. # Context Rewards payout is processed today in a single block and limited to `MaxNominatorRewardedPerValidator`. This number is currently 512 on both Kusama and Polkadot. This PR tries to scale the nominators payout to an unlimited count in a multi-block fashion. Exposures are stored in pages, with each page capped to a certain number (`MaxExposurePageSize`). Starting out, this number would be the same as `MaxNominatorRewardedPerValidator`, but eventually, this number can be lowered through new runtime upgrades to limit the rewardeable nominators per dispatched call instruction. The changes in the PR are backward compatible. ## How payouts would work like after this change Staking exposes two calls, 1) the existing `payout_stakers` and 2) `payout_stakers_by_page`. ### payout_stakers This remains backward compatible with no signature change. If for a given era a validator has multiple pages, they can call `payout_stakers` multiple times. The pages are executed in an ascending sequence and the runtime takes care of preventing double claims. ### payout_stakers_by_page Very similar to `payout_stakers` but also accepts an extra param `page_index`. An account can choose to payout rewards only for an explicitly passed `page_index`. **Lets look at an example scenario** Given an active validator on Kusama had 1100 nominators, `MaxExposurePageSize` set to 512 for Era e. In order to pay out rewards to all nominators, the caller would need to call `payout_stakers` 3 times. - `payout_stakers(origin, stash, e)` => will pay the first 512 nominators. - `payout_stakers(origin, stash, e)` => will pay the second set of 512 nominators. - `payout_stakers(origin, stash, e)` => will pay the last set of 76 nominators. ... - `payout_stakers(origin, stash, e)` => calling it the 4th time would return an error `InvalidPage`. The above calls can also be replaced by `payout_stakers_by_page` and passing a `page_index` explicitly. ## Commission note Validator commission is paid out in chunks across all the pages where each commission chunk is proportional to the total stake of the current page. This implies higher the total stake of a page, higher will be the commission. If all the pages of a validator's single era are paid out, the sum of commission paid to the validator across all pages should be equal to what the commission would have been if we had a non-paged exposure. ### Migration Note Strictly speaking, we did not need to bump our storage version since there is no migration of storage in this PR. But it is still useful to mark a storage upgrade for the following reasons: - New storage items are introduced in this PR while some older storage items are deprecated. - For the next `HistoryDepth` eras, the exposure would be incrementally migrated to its corresponding paged storage item. - Runtimes using staking pallet would strictly need to wait at least `HistoryDepth` eras with current upgraded version (14) for the migration to complete. At some era `E` such that `E > era_at_which_V14_gets_into_effect + HistoryDepth`, we will upgrade to version X which will remove the deprecated storage items. In other words, it is a strict requirement that E<sub>x</sub> - E<sub>14</sub> > `HistoryDepth`, where E<sub>x</sub> = Era at which deprecated storages are removed from runtime, E<sub>14</sub> = Era at which runtime is upgraded to version 14. - For Polkadot and Kusama, there is a [tracker ticket](https://github.com/paritytech/polkadot-sdk/issues/433) to clean up the deprecated storage items. ### Storage Changes #### Added - ErasStakersOverview - ClaimedRewards - ErasStakersPaged #### Deprecated The following can be cleaned up after 84 eras which is tracked [here](https://github.com/paritytech/polkadot-sdk/issues/433). - ErasStakers. - ErasStakersClipped. - StakingLedger.claimed_rewards, renamed to StakingLedger.legacy_claimed_rewards. ### Config Changes - Renamed MaxNominatorRewardedPerValidator to MaxExposurePageSize. ### TODO - [x] Tracker ticket for cleaning up the old code after 84 eras. - [x] Add companion. - [x] Redo benchmarks before merge. - [x] Add Changelog for pallet_staking. - [x] Pallet should be configurable to enable/disable paged rewards. - [x] Commission payouts are distributed across pages. - [x] Review documentation thoroughly. - [x] Rename `MaxNominatorRewardedPerValidator` -> `MaxExposurePageSize`. - [x] NMap for `ErasStakersPaged`. - [x] Deprecate ErasStakers. - [x] Integrity tests. ### Followup issues [Runtime api for deprecated ErasStakers storage item](https://github.com/paritytech/polkadot-sdk/issues/426) --------- Co-authored-by: Javier Viola <javier@parity.io> Co-authored-by: Ross Bulat <ross@parity.io> Co-authored-by: command-bot <>
1536 lines
92 KiB
Rust
Generated
1536 lines
92 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_staking`
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-10-31, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-yprdrvc7-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024`
|
|
|
|
// Executed Command:
|
|
// target/production/substrate-node
|
|
// benchmark
|
|
// pallet
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --extrinsic=*
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --json-file=/builds/parity/mirrors/polkadot-sdk/.git/.artifacts/bench.json
|
|
// --pallet=pallet_staking
|
|
// --chain=dev
|
|
// --header=./substrate/HEADER-APACHE2
|
|
// --output=./substrate/frame/staking/src/weights.rs
|
|
// --template=./substrate/.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_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 reap_stash(s: u32, ) -> Weight;
|
|
fn new_era(v: u32, n: u32, ) -> Weight;
|
|
fn get_npos_voters(v: u32, n: 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;
|
|
fn set_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)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:0 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
fn bond() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `927`
|
|
// Estimated: `4764`
|
|
// Minimum execution time: 42_811_000 picoseconds.
|
|
Weight::from_parts(44_465_000, 4764)
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
fn bond_extra() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1990`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 87_628_000 picoseconds.
|
|
Weight::from_parts(90_020_000, 8877)
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
fn unbond() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2195`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 91_655_000 picoseconds.
|
|
Weight::from_parts(94_146_000, 8877)
|
|
.saturating_add(T::DbWeight::get().reads(12_u64))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn withdraw_unbonded_update(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1115`
|
|
// Estimated: `4764`
|
|
// Minimum execution time: 42_953_000 picoseconds.
|
|
Weight::from_parts(44_648_505, 4764)
|
|
// Standard Error: 937
|
|
.saturating_add(Weight::from_parts(51_090, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn withdraw_unbonded_kill(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 89_218_000 picoseconds.
|
|
Weight::from_parts(97_761_884, 6248)
|
|
// Standard Error: 3_888
|
|
.saturating_add(Weight::from_parts(1_346_441, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(13_u64))
|
|
.saturating_add(T::DbWeight::get().writes(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinCommission` (r:1 w:0)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:1)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn validate() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1372`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 51_200_000 picoseconds.
|
|
Weight::from_parts(53_403_000, 4556)
|
|
.saturating_add(T::DbWeight::get().reads(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:128 w:128)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// The range of component `k` is `[1, 128]`.
|
|
fn kick(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1280 + k * (569 ±0)`
|
|
// Estimated: `4556 + k * (3033 ±0)`
|
|
// Minimum execution time: 28_963_000 picoseconds.
|
|
Weight::from_parts(29_884_371, 4556)
|
|
// Standard Error: 9_063
|
|
.saturating_add(Weight::from_parts(6_532_967, 0).saturating_mul(k.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 3033).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:17 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[1, 16]`.
|
|
fn nominate(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1866 + n * (102 ±0)`
|
|
// Estimated: `6248 + n * (2520 ±0)`
|
|
// Minimum execution time: 64_644_000 picoseconds.
|
|
Weight::from_parts(62_855_016, 6248)
|
|
// Standard Error: 17_528
|
|
.saturating_add(Weight::from_parts(3_993_850, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(12_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn chill() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1650`
|
|
// Estimated: `6248`
|
|
// Minimum execution time: 54_505_000 picoseconds.
|
|
Weight::from_parts(56_026_000, 6248)
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
fn set_payee() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `902`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 16_639_000 picoseconds.
|
|
Weight::from_parts(17_342_000, 4556)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:2)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
fn set_controller() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `902`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 20_334_000 picoseconds.
|
|
Weight::from_parts(21_067_000, 4556)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Staking::ValidatorCount` (r:0 w:1)
|
|
/// Proof: `Staking::ValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn set_validator_count() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_680_000 picoseconds.
|
|
Weight::from_parts(2_774_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_no_eras() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_613_000 picoseconds.
|
|
Weight::from_parts(8_922_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_new_era() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_657_000 picoseconds.
|
|
Weight::from_parts(9_020_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_new_era_always() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_600_000 picoseconds.
|
|
Weight::from_parts(9_157_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::Invulnerables` (r:0 w:1)
|
|
/// Proof: `Staking::Invulnerables` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// The range of component `v` is `[0, 1000]`.
|
|
fn set_invulnerables(v: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_792_000 picoseconds.
|
|
Weight::from_parts(3_293_694, 0)
|
|
// Standard Error: 31
|
|
.saturating_add(Weight::from_parts(10_668, 0).saturating_mul(v.into()))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn force_unstake(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 86_537_000 picoseconds.
|
|
Weight::from_parts(95_127_637, 6248)
|
|
// Standard Error: 3_902
|
|
.saturating_add(Weight::from_parts(1_336_182, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(13_u64))
|
|
.saturating_add(T::DbWeight::get().writes(12_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `Staking::UnappliedSlashes` (r:1 w:1)
|
|
/// Proof: `Staking::UnappliedSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `s` is `[1, 1000]`.
|
|
fn cancel_deferred_slash(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `66672`
|
|
// Estimated: `70137`
|
|
// Minimum execution time: 100_777_000 picoseconds.
|
|
Weight::from_parts(896_540_406, 70137)
|
|
// Standard Error: 57_788
|
|
.saturating_add(Weight::from_parts(4_870_910, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorReward` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorReward` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:257 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:258 w:258)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ClaimedRewards` (r:1 w:1)
|
|
/// Proof: `Staking::ClaimedRewards` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasRewardPoints` (r:1 w:0)
|
|
/// Proof: `Staking::ErasRewardPoints` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:257 w:0)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 256]`.
|
|
fn payout_stakers_dead_controller(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `21644 + n * (155 ±0)`
|
|
// Estimated: `21412 + n * (2603 ±0)`
|
|
// Minimum execution time: 133_129_000 picoseconds.
|
|
Weight::from_parts(190_983_630, 21412)
|
|
// Standard Error: 17_497
|
|
.saturating_add(Weight::from_parts(24_723_153, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(14_u64))
|
|
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:257 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:257 w:257)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersClipped` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersClipped` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ClaimedRewards` (r:1 w:1)
|
|
/// Proof: `Staking::ClaimedRewards` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorReward` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorReward` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:257 w:257)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:257 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:257 w:257)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasRewardPoints` (r:1 w:0)
|
|
/// Proof: `Staking::ErasRewardPoints` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:257 w:0)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 256]`.
|
|
fn payout_stakers_alive_staked(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `33297 + n * (377 ±0)`
|
|
// Estimated: `30944 + n * (3774 ±3)`
|
|
// Minimum execution time: 149_773_000 picoseconds.
|
|
Weight::from_parts(151_527_124, 30944)
|
|
// Standard Error: 24_152
|
|
.saturating_add(Weight::from_parts(46_124_074, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(14_u64))
|
|
.saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 3774).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// The range of component `l` is `[1, 32]`.
|
|
fn rebond(l: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1991 + l * (7 ±0)`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 81_618_000 picoseconds.
|
|
Weight::from_parts(85_245_630, 8877)
|
|
// Standard Error: 5_049
|
|
.saturating_add(Weight::from_parts(39_811, 0).saturating_mul(l.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn reap_stash(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 95_395_000 picoseconds.
|
|
Weight::from_parts(100_459_234, 6248)
|
|
// Standard Error: 3_781
|
|
.saturating_add(Weight::from_parts(1_333_607, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(12_u64))
|
|
.saturating_add(T::DbWeight::get().writes(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:0)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:200 w:0)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:110 w:0)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:110 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:110 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:110 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:11 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:0)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ValidatorCount` (r:1 w:0)
|
|
/// Proof: `Staking::ValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumValidatorCount` (r:1 w:0)
|
|
/// Proof: `Staking::MinimumValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:1)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:0 w:10)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:0 w:10)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:0 w:10)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasTotalStake` (r:0 w:1)
|
|
/// Proof: `Staking::ErasTotalStake` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStartSessionIndex` (r:0 w:1)
|
|
/// Proof: `Staking::ErasStartSessionIndex` (`max_values`: None, `max_size`: Some(16), added: 2491, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumActiveStake` (r:0 w:1)
|
|
/// Proof: `Staking::MinimumActiveStake` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[1, 10]`.
|
|
/// The range of component `n` is `[0, 100]`.
|
|
fn new_era(v: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + n * (720 ±0) + v * (3598 ±0)`
|
|
// Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)`
|
|
// Minimum execution time: 571_337_000 picoseconds.
|
|
Weight::from_parts(578_857_000, 512390)
|
|
// Standard Error: 2_090_511
|
|
.saturating_add(Weight::from_parts(68_626_083, 0).saturating_mul(v.into()))
|
|
// Standard Error: 208_307
|
|
.saturating_add(Weight::from_parts(18_645_374, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(206_u64))
|
|
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
|
|
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(n.into()))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:0)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:200 w:0)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2000 w:0)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:2000 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:2000 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:2000 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1000 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumActiveStake` (r:0 w:1)
|
|
/// Proof: `Staking::MinimumActiveStake` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[500, 1000]`.
|
|
/// The range of component `n` is `[500, 1000]`.
|
|
fn get_npos_voters(v: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `3175 + n * (911 ±0) + v * (395 ±0)`
|
|
// Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)`
|
|
// Minimum execution time: 34_590_734_000 picoseconds.
|
|
Weight::from_parts(35_238_091_000, 512390)
|
|
// Standard Error: 427_974
|
|
.saturating_add(Weight::from_parts(5_084_196, 0).saturating_mul(v.into()))
|
|
// Standard Error: 427_974
|
|
.saturating_add(Weight::from_parts(4_503_420, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(201_u64))
|
|
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
|
|
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(n.into()))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:0)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1001 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[500, 1000]`.
|
|
fn get_npos_targets(v: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `979 + v * (50 ±0)`
|
|
// Estimated: `3510 + v * (2520 ±0)`
|
|
// Minimum execution time: 2_509_588_000 picoseconds.
|
|
Weight::from_parts(89_050_539, 3510)
|
|
// Standard Error: 11_803
|
|
.saturating_add(Weight::from_parts(5_031_416, 0).saturating_mul(v.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:0 w:1)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
fn set_staking_configs_all_set() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 5_347_000 picoseconds.
|
|
Weight::from_parts(5_562_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:0 w:1)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
fn set_staking_configs_all_remove() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 4_725_000 picoseconds.
|
|
Weight::from_parts(5_075_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:1 w:0)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn chill_other() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1773`
|
|
// Estimated: `6248`
|
|
// Minimum execution time: 67_204_000 picoseconds.
|
|
Weight::from_parts(69_197_000, 6248)
|
|
.saturating_add(T::DbWeight::get().reads(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:1 w:0)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:1)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
fn force_apply_min_commission() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `691`
|
|
// Estimated: `3510`
|
|
// Minimum execution time: 12_497_000 picoseconds.
|
|
Weight::from_parts(12_943_000, 3510)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn set_min_commission() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 3_245_000 picoseconds.
|
|
Weight::from_parts(3_352_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests.
|
|
impl WeightInfo for () {
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:0 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
fn bond() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `927`
|
|
// Estimated: `4764`
|
|
// Minimum execution time: 42_811_000 picoseconds.
|
|
Weight::from_parts(44_465_000, 4764)
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
fn bond_extra() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1990`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 87_628_000 picoseconds.
|
|
Weight::from_parts(90_020_000, 8877)
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
fn unbond() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2195`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 91_655_000 picoseconds.
|
|
Weight::from_parts(94_146_000, 8877)
|
|
.saturating_add(RocksDbWeight::get().reads(12_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn withdraw_unbonded_update(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1115`
|
|
// Estimated: `4764`
|
|
// Minimum execution time: 42_953_000 picoseconds.
|
|
Weight::from_parts(44_648_505, 4764)
|
|
// Standard Error: 937
|
|
.saturating_add(Weight::from_parts(51_090, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn withdraw_unbonded_kill(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 89_218_000 picoseconds.
|
|
Weight::from_parts(97_761_884, 6248)
|
|
// Standard Error: 3_888
|
|
.saturating_add(Weight::from_parts(1_346_441, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(13_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinCommission` (r:1 w:0)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:1)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn validate() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1372`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 51_200_000 picoseconds.
|
|
Weight::from_parts(53_403_000, 4556)
|
|
.saturating_add(RocksDbWeight::get().reads(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:128 w:128)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// The range of component `k` is `[1, 128]`.
|
|
fn kick(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1280 + k * (569 ±0)`
|
|
// Estimated: `4556 + k * (3033 ±0)`
|
|
// Minimum execution time: 28_963_000 picoseconds.
|
|
Weight::from_parts(29_884_371, 4556)
|
|
// Standard Error: 9_063
|
|
.saturating_add(Weight::from_parts(6_532_967, 0).saturating_mul(k.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 3033).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:17 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[1, 16]`.
|
|
fn nominate(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1866 + n * (102 ±0)`
|
|
// Estimated: `6248 + n * (2520 ±0)`
|
|
// Minimum execution time: 64_644_000 picoseconds.
|
|
Weight::from_parts(62_855_016, 6248)
|
|
// Standard Error: 17_528
|
|
.saturating_add(Weight::from_parts(3_993_850, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(12_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn chill() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1650`
|
|
// Estimated: `6248`
|
|
// Minimum execution time: 54_505_000 picoseconds.
|
|
Weight::from_parts(56_026_000, 6248)
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
fn set_payee() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `902`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 16_639_000 picoseconds.
|
|
Weight::from_parts(17_342_000, 4556)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:2)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
fn set_controller() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `902`
|
|
// Estimated: `4556`
|
|
// Minimum execution time: 20_334_000 picoseconds.
|
|
Weight::from_parts(21_067_000, 4556)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Staking::ValidatorCount` (r:0 w:1)
|
|
/// Proof: `Staking::ValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn set_validator_count() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_680_000 picoseconds.
|
|
Weight::from_parts(2_774_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_no_eras() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_613_000 picoseconds.
|
|
Weight::from_parts(8_922_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_new_era() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_657_000 picoseconds.
|
|
Weight::from_parts(9_020_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::ForceEra` (r:0 w:1)
|
|
/// Proof: `Staking::ForceEra` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
fn force_new_era_always() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 8_600_000 picoseconds.
|
|
Weight::from_parts(9_157_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::Invulnerables` (r:0 w:1)
|
|
/// Proof: `Staking::Invulnerables` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// The range of component `v` is `[0, 1000]`.
|
|
fn set_invulnerables(v: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_792_000 picoseconds.
|
|
Weight::from_parts(3_293_694, 0)
|
|
// Standard Error: 31
|
|
.saturating_add(Weight::from_parts(10_668, 0).saturating_mul(v.into()))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn force_unstake(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 86_537_000 picoseconds.
|
|
Weight::from_parts(95_127_637, 6248)
|
|
// Standard Error: 3_902
|
|
.saturating_add(Weight::from_parts(1_336_182, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(13_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(12_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `Staking::UnappliedSlashes` (r:1 w:1)
|
|
/// Proof: `Staking::UnappliedSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `s` is `[1, 1000]`.
|
|
fn cancel_deferred_slash(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `66672`
|
|
// Estimated: `70137`
|
|
// Minimum execution time: 100_777_000 picoseconds.
|
|
Weight::from_parts(896_540_406, 70137)
|
|
// Standard Error: 57_788
|
|
.saturating_add(Weight::from_parts(4_870_910, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorReward` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorReward` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:257 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:258 w:258)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ClaimedRewards` (r:1 w:1)
|
|
/// Proof: `Staking::ClaimedRewards` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasRewardPoints` (r:1 w:0)
|
|
/// Proof: `Staking::ErasRewardPoints` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:257 w:0)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 256]`.
|
|
fn payout_stakers_dead_controller(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `21644 + n * (155 ±0)`
|
|
// Estimated: `21412 + n * (2603 ±0)`
|
|
// Minimum execution time: 133_129_000 picoseconds.
|
|
Weight::from_parts(190_983_630, 21412)
|
|
// Standard Error: 17_497
|
|
.saturating_add(Weight::from_parts(24_723_153, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(14_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:257 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:257 w:257)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersClipped` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersClipped` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ClaimedRewards` (r:1 w:1)
|
|
/// Proof: `Staking::ClaimedRewards` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:0)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorReward` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorReward` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:257 w:257)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:257 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:257 w:257)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:1 w:0)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasRewardPoints` (r:1 w:0)
|
|
/// Proof: `Staking::ErasRewardPoints` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:1 w:0)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:257 w:0)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 256]`.
|
|
fn payout_stakers_alive_staked(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `33297 + n * (377 ±0)`
|
|
// Estimated: `30944 + n * (3774 ±3)`
|
|
// Minimum execution time: 149_773_000 picoseconds.
|
|
Weight::from_parts(151_527_124, 30944)
|
|
// Standard Error: 24_152
|
|
.saturating_add(Weight::from_parts(46_124_074, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(14_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((6_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 3774).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:1 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:3 w:3)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:2 w:2)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// The range of component `l` is `[1, 32]`.
|
|
fn rebond(l: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1991 + l * (7 ±0)`
|
|
// Estimated: `8877`
|
|
// Minimum execution time: 81_618_000 picoseconds.
|
|
Weight::from_parts(85_245_630, 8877)
|
|
// Standard Error: 5_049
|
|
.saturating_add(Weight::from_parts(39_811, 0).saturating_mul(l.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Staking::Bonded` (r:1 w:1)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:1 w:1)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SlashingSpans` (r:1 w:1)
|
|
/// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Locks` (r:1 w:1)
|
|
/// Proof: `Balances::Locks` (`max_values`: None, `max_size`: Some(1299), added: 3774, mode: `MaxEncodedLen`)
|
|
/// Storage: `Balances::Freezes` (r:1 w:0)
|
|
/// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(67), added: 2542, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Payee` (r:0 w:1)
|
|
/// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::SpanSlash` (r:0 w:100)
|
|
/// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn reap_stash(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2196 + s * (4 ±0)`
|
|
// Estimated: `6248 + s * (4 ±0)`
|
|
// Minimum execution time: 95_395_000 picoseconds.
|
|
Weight::from_parts(100_459_234, 6248)
|
|
// Standard Error: 3_781
|
|
.saturating_add(Weight::from_parts(1_333_607, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(12_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:0)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:200 w:0)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:110 w:0)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:110 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:110 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:110 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:11 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:0)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ValidatorCount` (r:1 w:0)
|
|
/// Proof: `Staking::ValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumValidatorCount` (r:1 w:0)
|
|
/// Proof: `Staking::MinimumValidatorCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CurrentEra` (r:1 w:1)
|
|
/// Proof: `Staking::CurrentEra` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasValidatorPrefs` (r:0 w:10)
|
|
/// Proof: `Staking::ErasValidatorPrefs` (`max_values`: None, `max_size`: Some(57), added: 2532, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStakersPaged` (r:0 w:10)
|
|
/// Proof: `Staking::ErasStakersPaged` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Staking::ErasStakersOverview` (r:0 w:10)
|
|
/// Proof: `Staking::ErasStakersOverview` (`max_values`: None, `max_size`: Some(92), added: 2567, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasTotalStake` (r:0 w:1)
|
|
/// Proof: `Staking::ErasTotalStake` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ErasStartSessionIndex` (r:0 w:1)
|
|
/// Proof: `Staking::ErasStartSessionIndex` (`max_values`: None, `max_size`: Some(16), added: 2491, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumActiveStake` (r:0 w:1)
|
|
/// Proof: `Staking::MinimumActiveStake` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[1, 10]`.
|
|
/// The range of component `n` is `[0, 100]`.
|
|
fn new_era(v: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + n * (720 ±0) + v * (3598 ±0)`
|
|
// Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)`
|
|
// Minimum execution time: 571_337_000 picoseconds.
|
|
Weight::from_parts(578_857_000, 512390)
|
|
// Standard Error: 2_090_511
|
|
.saturating_add(Weight::from_parts(68_626_083, 0).saturating_mul(v.into()))
|
|
// Standard Error: 208_307
|
|
.saturating_add(Weight::from_parts(18_645_374, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(206_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((5_u64).saturating_mul(v.into())))
|
|
.saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(v.into())))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(n.into()))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:0)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:200 w:0)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2000 w:0)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Bonded` (r:2000 w:0)
|
|
/// Proof: `Staking::Bonded` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Ledger` (r:2000 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:2000 w:0)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1000 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinimumActiveStake` (r:0 w:1)
|
|
/// Proof: `Staking::MinimumActiveStake` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[500, 1000]`.
|
|
/// The range of component `n` is `[500, 1000]`.
|
|
fn get_npos_voters(v: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `3175 + n * (911 ±0) + v * (395 ±0)`
|
|
// Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)`
|
|
// Minimum execution time: 34_590_734_000 picoseconds.
|
|
Weight::from_parts(35_238_091_000, 512390)
|
|
// Standard Error: 427_974
|
|
.saturating_add(Weight::from_parts(5_084_196, 0).saturating_mul(v.into()))
|
|
// Standard Error: 427_974
|
|
.saturating_add(Weight::from_parts(4_503_420, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(201_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((5_u64).saturating_mul(v.into())))
|
|
.saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(n.into()))
|
|
.saturating_add(Weight::from_parts(0, 3566).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `Staking::CounterForValidators` (r:1 w:0)
|
|
/// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1001 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// The range of component `v` is `[500, 1000]`.
|
|
fn get_npos_targets(v: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `979 + v * (50 ±0)`
|
|
// Estimated: `3510 + v * (2520 ±0)`
|
|
// Minimum execution time: 2_509_588_000 picoseconds.
|
|
Weight::from_parts(89_050_539, 3510)
|
|
// Standard Error: 11_803
|
|
.saturating_add(Weight::from_parts(5_031_416, 0).saturating_mul(v.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(v.into())))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into()))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:0 w:1)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
fn set_staking_configs_all_set() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 5_347_000 picoseconds.
|
|
Weight::from_parts(5_562_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinValidatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinValidatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxValidatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:0 w:1)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:0 w:1)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:0 w:1)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
fn set_staking_configs_all_remove() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 4_725_000 picoseconds.
|
|
Weight::from_parts(5_075_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::Ledger` (r:1 w:0)
|
|
/// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Nominators` (r:1 w:1)
|
|
/// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::ChillThreshold` (r:1 w:0)
|
|
/// Proof: `Staking::ChillThreshold` (`max_values`: Some(1), `max_size`: Some(1), added: 496, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MaxNominatorsCount` (r:1 w:0)
|
|
/// Proof: `Staking::MaxNominatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::CounterForNominators` (r:1 w:1)
|
|
/// Proof: `Staking::CounterForNominators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::MinNominatorBond` (r:1 w:0)
|
|
/// Proof: `Staking::MinNominatorBond` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:0)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListNodes` (r:2 w:2)
|
|
/// Proof: `VoterList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::ListBags` (r:1 w:1)
|
|
/// Proof: `VoterList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`)
|
|
/// Storage: `VoterList::CounterForListNodes` (r:1 w:1)
|
|
/// Proof: `VoterList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn chill_other() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1773`
|
|
// Estimated: `6248`
|
|
// Minimum execution time: 67_204_000 picoseconds.
|
|
Weight::from_parts(69_197_000, 6248)
|
|
.saturating_add(RocksDbWeight::get().reads(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:1 w:0)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
/// Storage: `Staking::Validators` (r:1 w:1)
|
|
/// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
fn force_apply_min_commission() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `691`
|
|
// Estimated: `3510`
|
|
// Minimum execution time: 12_497_000 picoseconds.
|
|
Weight::from_parts(12_943_000, 3510)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Staking::MinCommission` (r:0 w:1)
|
|
/// Proof: `Staking::MinCommission` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
|
|
fn set_min_commission() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 3_245_000 picoseconds.
|
|
Weight::from_parts(3_352_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
}
|