mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
418f38c335
* Update weights for polkadot * add Kusama weights * add westend weights * remove claims weight files claims still uses in-line weights which is fine cause it is a polkadot specific pallet Co-authored-by: Parity Benchmarking Bot <admin@parity.io> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
124 lines
4.7 KiB
Rust
124 lines
4.7 KiB
Rust
// Copyright 2017-2020 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 2.0.0
|
|
//! DATE: 2020-12-09, STEPS: [50, ], REPEAT: 20, LOW RANGE: [], HIGH RANGE: []
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 128
|
|
|
|
// Executed Command:
|
|
// target/release/polkadot
|
|
// benchmark
|
|
// --chain=kusama-dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_proxy
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --header=./file_header.txt
|
|
// --output=./runtime/kusama/src/weights/
|
|
|
|
|
|
#![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> {
|
|
fn proxy(p: u32, ) -> Weight {
|
|
(30_904_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((196_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
}
|
|
fn proxy_announced(a: u32, p: u32, ) -> Weight {
|
|
(65_146_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((825_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 1_000
|
|
.saturating_add((185_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))
|
|
}
|
|
fn remove_announcement(a: u32, p: u32, ) -> Weight {
|
|
(41_395_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((818_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 1_000
|
|
.saturating_add((11_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))
|
|
}
|
|
fn reject_announcement(a: u32, p: u32, ) -> Weight {
|
|
(41_431_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((820_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 1_000
|
|
.saturating_add((13_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))
|
|
}
|
|
fn announce(a: u32, p: u32, ) -> Weight {
|
|
(65_751_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((703_000 as Weight).saturating_mul(a as Weight))
|
|
// Standard Error: 1_000
|
|
.saturating_add((186_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))
|
|
}
|
|
fn add_proxy(p: u32, ) -> Weight {
|
|
(44_708_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((196_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))
|
|
}
|
|
fn remove_proxy(p: u32, ) -> Weight {
|
|
(40_043_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((235_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))
|
|
}
|
|
fn remove_proxies(p: u32, ) -> Weight {
|
|
(38_286_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((189_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))
|
|
}
|
|
fn anonymous(p: u32, ) -> Weight {
|
|
(63_581_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((25_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))
|
|
}
|
|
fn kill_anonymous(p: u32, ) -> Weight {
|
|
(41_113_000 as Weight)
|
|
// Standard Error: 1_000
|
|
.saturating_add((187_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))
|
|
}
|
|
}
|