mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-03 14:37:24 +00:00
37d067c0e0
* updated weight formula for submit_finality_proof * remove common prefix traces * update docs * single benchmark * Re-generate weights. * Update delivery transaction limits Co-authored-by: Tomasz Drwięga <tomasz@parity.io> Co-authored-by: Hernando Castano <hernando@hcastano.com>
76 lines
2.6 KiB
Rust
76 lines
2.6 KiB
Rust
// Copyright 2019-2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Bridges Common.
|
|
|
|
// Parity Bridges Common 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.
|
|
|
|
// Parity Bridges Common 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 Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Autogenerated weights for pallet_bridge_grandpa
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 3.0.0
|
|
//! DATE: 2021-06-03, STEPS: [50, ], REPEAT: 20
|
|
//! LOW RANGE: [], HIGH RANGE: []
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled
|
|
//! CHAIN: Some("dev"), DB CACHE: 128
|
|
|
|
// Executed Command:
|
|
// target/release/rialto-bridge-node
|
|
// benchmark
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_bridge_grandpa
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=Compiled
|
|
// --heap-pages=4096
|
|
// --output=./modules/grandpa/src/weights.rs
|
|
// --template=./.maintain/rialto-weight-template.hbs
|
|
|
|
#![allow(clippy::all)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{
|
|
traits::Get,
|
|
weights::{constants::RocksDbWeight, Weight},
|
|
};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_bridge_grandpa.
|
|
pub trait WeightInfo {
|
|
fn submit_finality_proof(p: u32, v: u32) -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_bridge_grandpa using the Rialto node and recommended hardware.
|
|
pub struct RialtoWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for RialtoWeight<T> {
|
|
fn submit_finality_proof(p: u32, v: u32) -> Weight {
|
|
(0 as Weight)
|
|
.saturating_add((59_692_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add((6_876_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(7 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(6 as Weight))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
fn submit_finality_proof(p: u32, v: u32) -> Weight {
|
|
(0 as Weight)
|
|
.saturating_add((59_692_000 as Weight).saturating_mul(p as Weight))
|
|
.saturating_add((6_876_000 as Weight).saturating_mul(v as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(7 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(6 as Weight))
|
|
}
|
|
}
|