mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-18 07:05:42 +00:00
8e7adaf283
* add new trait * implement DispatchableWithStorageLayer * at least one transactional * all dispatch is at least transactional * storage_layer api * add test * storage layer tests * deprecate transactional tag * i guess no reason to deprecate * remove transactional from batch_all * update tests * extend trait * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_staking --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/staking/src/weights.rs --template=./.maintain/frame-weight-template.hbs * fix copy paste name * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_utility --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/utility/src/weights.rs --template=./.maintain/frame-weight-template.hbs * Create run_all_benchmarks.sh * uncomment build * update number of steps and repeats * add skip build * Update run_all_benchmarks.sh * Update run_all_benchmarks.sh * new benchmarks * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs * weights * Update dispatch.rs * doc link * decl_macro support Co-authored-by: Parity Bot <admin@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
492 lines
19 KiB
Rust
492 lines
19 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2022 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Autogenerated weights for pallet_referenda
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2022-05-23, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_referenda
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
// --output=./frame/referenda/src/weights.rs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_referenda.
|
|
pub trait WeightInfo {
|
|
fn submit() -> Weight;
|
|
fn place_decision_deposit_preparing() -> Weight;
|
|
fn place_decision_deposit_queued() -> Weight;
|
|
fn place_decision_deposit_not_queued() -> Weight;
|
|
fn place_decision_deposit_passing() -> Weight;
|
|
fn place_decision_deposit_failing() -> Weight;
|
|
fn refund_decision_deposit() -> Weight;
|
|
fn cancel() -> Weight;
|
|
fn kill() -> Weight;
|
|
fn one_fewer_deciding_queue_empty() -> Weight;
|
|
fn one_fewer_deciding_failing() -> Weight;
|
|
fn one_fewer_deciding_passing() -> Weight;
|
|
fn nudge_referendum_requeued_insertion() -> Weight;
|
|
fn nudge_referendum_requeued_slide() -> Weight;
|
|
fn nudge_referendum_queued() -> Weight;
|
|
fn nudge_referendum_not_queued() -> Weight;
|
|
fn nudge_referendum_no_deposit() -> Weight;
|
|
fn nudge_referendum_preparing() -> Weight;
|
|
fn nudge_referendum_timed_out() -> Weight;
|
|
fn nudge_referendum_begin_deciding_failing() -> Weight;
|
|
fn nudge_referendum_begin_deciding_passing() -> Weight;
|
|
fn nudge_referendum_begin_confirming() -> Weight;
|
|
fn nudge_referendum_end_confirming() -> Weight;
|
|
fn nudge_referendum_continue_not_confirming() -> Weight;
|
|
fn nudge_referendum_continue_confirming() -> Weight;
|
|
fn nudge_referendum_approved() -> Weight;
|
|
fn nudge_referendum_rejected() -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_referenda using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
// Storage: Referenda ReferendumCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:0 w:1)
|
|
fn submit() -> Weight {
|
|
(34_640_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_preparing() -> Weight {
|
|
(44_290_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
fn place_decision_deposit_queued() -> Weight {
|
|
(49_428_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
fn place_decision_deposit_not_queued() -> Weight {
|
|
(50_076_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_passing() -> Weight {
|
|
(55_935_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_failing() -> Weight {
|
|
(52_921_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
fn refund_decision_deposit() -> Weight {
|
|
(29_160_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn cancel() -> Weight {
|
|
(34_972_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn kill() -> Weight {
|
|
(60_620_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:0)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
fn one_fewer_deciding_queue_empty() -> Weight {
|
|
(9_615_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn one_fewer_deciding_failing() -> Weight {
|
|
(113_077_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn one_fewer_deciding_passing() -> Weight {
|
|
(114_376_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_requeued_insertion() -> Weight {
|
|
(43_901_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_requeued_slide() -> Weight {
|
|
(43_279_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_queued() -> Weight {
|
|
(45_564_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_not_queued() -> Weight {
|
|
(45_061_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_no_deposit() -> Weight {
|
|
(23_757_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_preparing() -> Weight {
|
|
(24_781_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
fn nudge_referendum_timed_out() -> Weight {
|
|
(18_344_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_deciding_failing() -> Weight {
|
|
(34_752_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_deciding_passing() -> Weight {
|
|
(37_055_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_confirming() -> Weight {
|
|
(31_442_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_end_confirming() -> Weight {
|
|
(33_201_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_continue_not_confirming() -> Weight {
|
|
(30_047_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_continue_confirming() -> Weight {
|
|
(29_195_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
// Storage: Scheduler Lookup (r:1 w:1)
|
|
// Storage: Preimage StatusFor (r:1 w:1)
|
|
fn nudge_referendum_approved() -> Weight {
|
|
(50_119_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_rejected() -> Weight {
|
|
(32_203_000 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 () {
|
|
// Storage: Referenda ReferendumCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:0 w:1)
|
|
fn submit() -> Weight {
|
|
(34_640_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_preparing() -> Weight {
|
|
(44_290_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
fn place_decision_deposit_queued() -> Weight {
|
|
(49_428_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
fn place_decision_deposit_not_queued() -> Weight {
|
|
(50_076_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_passing() -> Weight {
|
|
(55_935_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn place_decision_deposit_failing() -> Weight {
|
|
(52_921_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
fn refund_decision_deposit() -> Weight {
|
|
(29_160_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn cancel() -> Weight {
|
|
(34_972_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn kill() -> Weight {
|
|
(60_620_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:0)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
fn one_fewer_deciding_queue_empty() -> Weight {
|
|
(9_615_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn one_fewer_deciding_failing() -> Weight {
|
|
(113_077_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
fn one_fewer_deciding_passing() -> Weight {
|
|
(114_376_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_requeued_insertion() -> Weight {
|
|
(43_901_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_requeued_slide() -> Weight {
|
|
(43_279_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_queued() -> Weight {
|
|
(45_564_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:0)
|
|
// Storage: Referenda TrackQueue (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_not_queued() -> Weight {
|
|
(45_061_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_no_deposit() -> Weight {
|
|
(23_757_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_preparing() -> Weight {
|
|
(24_781_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
fn nudge_referendum_timed_out() -> Weight {
|
|
(18_344_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_deciding_failing() -> Weight {
|
|
(34_752_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Referenda DecidingCount (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_deciding_passing() -> Weight {
|
|
(37_055_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_begin_confirming() -> Weight {
|
|
(31_442_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_end_confirming() -> Weight {
|
|
(33_201_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_continue_not_confirming() -> Weight {
|
|
(30_047_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_continue_confirming() -> Weight {
|
|
(29_195_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:2 w:2)
|
|
// Storage: Scheduler Lookup (r:1 w:1)
|
|
// Storage: Preimage StatusFor (r:1 w:1)
|
|
fn nudge_referendum_approved() -> Weight {
|
|
(50_119_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
|
|
// Storage: Scheduler Agenda (r:1 w:1)
|
|
fn nudge_referendum_rejected() -> Weight {
|
|
(32_203_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
}
|