mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-01 04:17:24 +00:00
5e458f6acb
* rococo: update weights * polkadot: update weights * kusama: update weights * westend: update weights
140 lines
5.3 KiB
Rust
140 lines
5.3 KiB
Rust
// Copyright 2017-2022 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
//! Autogenerated weights for `pallet_proxy`
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2022-05-11, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("rococo-dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/polkadot
|
|
// benchmark
|
|
// pallet
|
|
// --chain=rococo-dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_proxy
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --header=./file_header.txt
|
|
// --output=./runtime/rococo/src/weights/pallet_proxy.rs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::Weight};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions for `pallet_proxy`.
|
|
pub struct WeightInfo<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
|
|
// Storage: Proxy Proxies (r:1 w:0)
|
|
fn proxy(p: u32, ) -> Weight {
|
|
(12_968_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((74_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:0)
|
|
// Storage: Proxy Announcements (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn proxy_announced(a: u32, p: u32, ) -> Weight {
|
|
(26_979_000 as Weight)
|
|
// Standard Error: 7_000
|
|
.saturating_add((217_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 7_000
|
|
.saturating_add((80_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Proxy Announcements (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn remove_announcement(a: u32, _p: u32, ) -> Weight {
|
|
(19_183_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((195_000 as Weight).saturating_mul(a as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Proxy Announcements (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn reject_announcement(a: u32, p: u32, ) -> Weight {
|
|
(18_720_000 as Weight)
|
|
// Standard Error: 3_000
|
|
.saturating_add((205_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 3_000
|
|
.saturating_add((6_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:0)
|
|
// Storage: Proxy Announcements (r:1 w:1)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn announce(a: u32, p: u32, ) -> Weight {
|
|
(26_582_000 as Weight)
|
|
// Standard Error: 2_000
|
|
.saturating_add((174_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 2_000
|
|
.saturating_add((61_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(3 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:1)
|
|
fn add_proxy(p: u32, ) -> Weight {
|
|
(21_026_000 as Weight)
|
|
// Standard Error: 2_000
|
|
.saturating_add((129_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:1)
|
|
fn remove_proxy(p: u32, ) -> Weight {
|
|
(20_934_000 as Weight)
|
|
// Standard Error: 2_000
|
|
.saturating_add((137_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:1)
|
|
fn remove_proxies(p: u32, ) -> Weight {
|
|
(17_296_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((82_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0)
|
|
// Storage: Proxy Proxies (r:1 w:1)
|
|
fn anonymous(p: u32, ) -> Weight {
|
|
(23_346_000 as Weight)
|
|
// Standard Error: 2_000
|
|
.saturating_add((41_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Proxy Proxies (r:1 w:1)
|
|
fn kill_anonymous(p: u32, ) -> Weight {
|
|
(18_342_000 as Weight)
|
|
// Standard Error: 2_000
|
|
.saturating_add((84_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
}
|