mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 14:07:26 +00:00
ebfe00d590
* Align log Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use max instead of sum Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make comment ordering deterministic Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Dont add Pov overhead when all is ignored Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update test pallet weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Re-run weights on bm2 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix test Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Actually use new weights Fucked up the merge for this file... Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update contract weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
338 lines
18 KiB
Rust
Generated
338 lines
18 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_conviction_voting
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-04-06, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_conviction_voting
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --output=./frame/conviction-voting/src/weights.rs
|
|
// --header=./HEADER-APACHE2
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_conviction_voting.
|
|
pub trait WeightInfo {
|
|
fn vote_new() -> Weight;
|
|
fn vote_existing() -> Weight;
|
|
fn remove_vote() -> Weight;
|
|
fn remove_other_vote() -> Weight;
|
|
fn delegate(r: u32, ) -> Weight;
|
|
fn undelegate(r: u32, ) -> Weight;
|
|
fn unlock() -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_conviction_voting using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn vote_new() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `13074`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 99_130_000 picoseconds.
|
|
Weight::from_parts(100_355_000, 219984)
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn vote_existing() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `20216`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 276_420_000 picoseconds.
|
|
Weight::from_parts(277_433_000, 219984)
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn remove_vote() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `19968`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 241_058_000 picoseconds.
|
|
Weight::from_parts(242_235_000, 219984)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:0)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
fn remove_other_vote() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `12675`
|
|
// Estimated: `30706`
|
|
// Minimum execution time: 46_385_000 picoseconds.
|
|
Weight::from_parts(46_709_000, 30706)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:2 w:2)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn delegate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `240 + r * (1627 ±0)`
|
|
// Estimated: `109992 + r * (109992 ±0)`
|
|
// Minimum execution time: 48_947_000 picoseconds.
|
|
Weight::from_parts(50_219_593, 109992)
|
|
// Standard Error: 70_238
|
|
.saturating_add(Weight::from_parts(40_509_706, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 109992).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:2 w:2)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn undelegate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `406 + r * (1376 ±0)`
|
|
// Estimated: `109992 + r * (109992 ±0)`
|
|
// Minimum execution time: 23_408_000 picoseconds.
|
|
Weight::from_parts(24_087_793, 109992)
|
|
// Standard Error: 31_776
|
|
.saturating_add(Weight::from_parts(36_594_606, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 109992).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
fn unlock() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `11734`
|
|
// Estimated: `30706`
|
|
// Minimum execution time: 65_903_000 picoseconds.
|
|
Weight::from_parts(66_460_000, 30706)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn vote_new() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `13074`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 99_130_000 picoseconds.
|
|
Weight::from_parts(100_355_000, 219984)
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn vote_existing() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `20216`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 276_420_000 picoseconds.
|
|
Weight::from_parts(277_433_000, 219984)
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
fn remove_vote() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `19968`
|
|
// Estimated: `219984`
|
|
// Minimum execution time: 241_058_000 picoseconds.
|
|
Weight::from_parts(242_235_000, 219984)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:0)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
fn remove_other_vote() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `12675`
|
|
// Estimated: `30706`
|
|
// Minimum execution time: 46_385_000 picoseconds.
|
|
Weight::from_parts(46_709_000, 30706)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:2 w:2)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn delegate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `240 + r * (1627 ±0)`
|
|
// Estimated: `109992 + r * (109992 ±0)`
|
|
// Minimum execution time: 48_947_000 picoseconds.
|
|
Weight::from_parts(50_219_593, 109992)
|
|
// Standard Error: 70_238
|
|
.saturating_add(Weight::from_parts(40_509_706, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 109992).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:2 w:2)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
/// Proof: Referenda ReferendumInfoFor (max_values: None, max_size: Some(366), added: 2841, mode: MaxEncodedLen)
|
|
/// Storage: Scheduler Agenda (r:2 w:2)
|
|
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(107022), added: 109497, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn undelegate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `406 + r * (1376 ±0)`
|
|
// Estimated: `109992 + r * (109992 ±0)`
|
|
// Minimum execution time: 23_408_000 picoseconds.
|
|
Weight::from_parts(24_087_793, 109992)
|
|
// Standard Error: 31_776
|
|
.saturating_add(Weight::from_parts(36_594_606, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 109992).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: ConvictionVoting VotingFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting VotingFor (max_values: None, max_size: Some(27241), added: 29716, mode: MaxEncodedLen)
|
|
/// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
|
|
/// Proof: ConvictionVoting ClassLocksFor (max_values: None, max_size: Some(59), added: 2534, 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(49), added: 2524, mode: MaxEncodedLen)
|
|
fn unlock() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `11734`
|
|
// Estimated: `30706`
|
|
// Minimum execution time: 65_903_000 picoseconds.
|
|
Weight::from_parts(66_460_000, 30706)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
}
|