mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-02 17:37:23 +00:00
e3e651f72c
* Happy new year Updates the copyright years and fixes wrong license headers. * Fix the template * Split HEADER into HEADER-APACHE & HEADER-GPL
367 lines
14 KiB
Rust
367 lines
14 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2020-2021 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.
|
|
|
|
//! Weights for pallet_democracy
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0
|
|
//! DATE: 2020-10-28, STEPS: [50, ], REPEAT: 20, LOW RANGE: [], HIGH RANGE: []
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 128
|
|
|
|
// Executed Command:
|
|
// target/release/substrate
|
|
// benchmark
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_democracy
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --output=./frame/democracy/src/weights.rs
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
|
|
|
|
#![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_democracy.
|
|
pub trait WeightInfo {
|
|
fn propose() -> Weight;
|
|
fn second(s: u32, ) -> Weight;
|
|
fn vote_new(r: u32, ) -> Weight;
|
|
fn vote_existing(r: u32, ) -> Weight;
|
|
fn emergency_cancel() -> Weight;
|
|
fn blacklist(p: u32, ) -> Weight;
|
|
fn external_propose(v: u32, ) -> Weight;
|
|
fn external_propose_majority() -> Weight;
|
|
fn external_propose_default() -> Weight;
|
|
fn fast_track() -> Weight;
|
|
fn veto_external(v: u32, ) -> Weight;
|
|
fn cancel_proposal(p: u32, ) -> Weight;
|
|
fn cancel_referendum() -> Weight;
|
|
fn cancel_queued(r: u32, ) -> Weight;
|
|
fn on_initialize_base(r: u32, ) -> Weight;
|
|
fn delegate(r: u32, ) -> Weight;
|
|
fn undelegate(r: u32, ) -> Weight;
|
|
fn clear_public_proposals() -> Weight;
|
|
fn note_preimage(b: u32, ) -> Weight;
|
|
fn note_imminent_preimage(b: u32, ) -> Weight;
|
|
fn reap_preimage(b: u32, ) -> Weight;
|
|
fn unlock_remove(r: u32, ) -> Weight;
|
|
fn unlock_set(r: u32, ) -> Weight;
|
|
fn remove_vote(r: u32, ) -> Weight;
|
|
fn remove_other_vote(r: u32, ) -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_democracy using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
fn propose() -> Weight {
|
|
(87_883_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn second(s: u32, ) -> Weight {
|
|
(52_998_000 as Weight)
|
|
.saturating_add((251_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn vote_new(r: u32, ) -> Weight {
|
|
(63_300_000 as Weight)
|
|
.saturating_add((284_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn vote_existing(r: u32, ) -> Weight {
|
|
(63_127_000 as Weight)
|
|
.saturating_add((289_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn emergency_cancel() -> Weight {
|
|
(38_877_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn blacklist(p: u32, ) -> Weight {
|
|
(108_060_000 as Weight)
|
|
.saturating_add((795_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
fn external_propose(v: u32, ) -> Weight {
|
|
(19_052_000 as Weight)
|
|
.saturating_add((111_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn external_propose_majority() -> Weight {
|
|
(4_544_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn external_propose_default() -> Weight {
|
|
(4_608_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn fast_track() -> Weight {
|
|
(38_876_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn veto_external(v: u32, ) -> Weight {
|
|
(40_283_000 as Weight)
|
|
.saturating_add((187_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn cancel_proposal(p: u32, ) -> Weight {
|
|
(68_449_000 as Weight)
|
|
.saturating_add((876_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn cancel_referendum() -> Weight {
|
|
(23_670_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn cancel_queued(r: u32, ) -> Weight {
|
|
(43_247_000 as Weight)
|
|
.saturating_add((4_578_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn on_initialize_base(r: u32, ) -> Weight {
|
|
(15_278_000 as Weight)
|
|
.saturating_add((6_696_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn delegate(r: u32, ) -> Weight {
|
|
(83_002_000 as Weight)
|
|
.saturating_add((9_889_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn undelegate(r: u32, ) -> Weight {
|
|
(43_552_000 as Weight)
|
|
.saturating_add((9_887_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn clear_public_proposals() -> Weight {
|
|
(4_404_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn note_preimage(b: u32, ) -> Weight {
|
|
(60_073_000 as Weight)
|
|
.saturating_add((4_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn note_imminent_preimage(b: u32, ) -> Weight {
|
|
(38_896_000 as Weight)
|
|
.saturating_add((4_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn reap_preimage(b: u32, ) -> Weight {
|
|
(54_861_000 as Weight)
|
|
.saturating_add((3_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn unlock_remove(r: u32, ) -> Weight {
|
|
(52_956_000 as Weight)
|
|
.saturating_add((126_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn unlock_set(r: u32, ) -> Weight {
|
|
(49_789_000 as Weight)
|
|
.saturating_add((274_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn remove_vote(r: u32, ) -> Weight {
|
|
(29_790_000 as Weight)
|
|
.saturating_add((283_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn remove_other_vote(r: u32, ) -> Weight {
|
|
(28_497_000 as Weight)
|
|
.saturating_add((217_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
fn propose() -> Weight {
|
|
(87_883_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn second(s: u32, ) -> Weight {
|
|
(52_998_000 as Weight)
|
|
.saturating_add((251_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn vote_new(r: u32, ) -> Weight {
|
|
(63_300_000 as Weight)
|
|
.saturating_add((284_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn vote_existing(r: u32, ) -> Weight {
|
|
(63_127_000 as Weight)
|
|
.saturating_add((289_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn emergency_cancel() -> Weight {
|
|
(38_877_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn blacklist(p: u32, ) -> Weight {
|
|
(108_060_000 as Weight)
|
|
.saturating_add((795_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
fn external_propose(v: u32, ) -> Weight {
|
|
(19_052_000 as Weight)
|
|
.saturating_add((111_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn external_propose_majority() -> Weight {
|
|
(4_544_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn external_propose_default() -> Weight {
|
|
(4_608_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn fast_track() -> Weight {
|
|
(38_876_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn veto_external(v: u32, ) -> Weight {
|
|
(40_283_000 as Weight)
|
|
.saturating_add((187_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn cancel_proposal(p: u32, ) -> Weight {
|
|
(68_449_000 as Weight)
|
|
.saturating_add((876_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn cancel_referendum() -> Weight {
|
|
(23_670_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn cancel_queued(r: u32, ) -> Weight {
|
|
(43_247_000 as Weight)
|
|
.saturating_add((4_578_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn on_initialize_base(r: u32, ) -> Weight {
|
|
(15_278_000 as Weight)
|
|
.saturating_add((6_696_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn delegate(r: u32, ) -> Weight {
|
|
(83_002_000 as Weight)
|
|
.saturating_add((9_889_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn undelegate(r: u32, ) -> Weight {
|
|
(43_552_000 as Weight)
|
|
.saturating_add((9_887_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(r as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(r as Weight)))
|
|
}
|
|
fn clear_public_proposals() -> Weight {
|
|
(4_404_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn note_preimage(b: u32, ) -> Weight {
|
|
(60_073_000 as Weight)
|
|
.saturating_add((4_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn note_imminent_preimage(b: u32, ) -> Weight {
|
|
(38_896_000 as Weight)
|
|
.saturating_add((4_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn reap_preimage(b: u32, ) -> Weight {
|
|
(54_861_000 as Weight)
|
|
.saturating_add((3_000 as Weight).saturating_mul(b as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
fn unlock_remove(r: u32, ) -> Weight {
|
|
(52_956_000 as Weight)
|
|
.saturating_add((126_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn unlock_set(r: u32, ) -> Weight {
|
|
(49_789_000 as Weight)
|
|
.saturating_add((274_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
fn remove_vote(r: u32, ) -> Weight {
|
|
(29_790_000 as Weight)
|
|
.saturating_add((283_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
fn remove_other_vote(r: u32, ) -> Weight {
|
|
(28_497_000 as Weight)
|
|
.saturating_add((217_000 as Weight).saturating_mul(r as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
}
|