This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
claravanstaden
authored and
claravanstaden
committed
Oct 25, 2023
1 parent
ea3aaad
commit 22cc658
Showing
3 changed files
with
69 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
...arachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/snowbridge_outbound_queue.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
//! Autogenerated weights for `snowbridge_outbound_queue` | ||
//! | ||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev | ||
//! DATE: 2023-10-20, STEPS: `2`, REPEAT: `1`, LOW RANGE: `[]`, HIGH RANGE: `[]` | ||
//! WORST CASE MAP SIZE: `1000000` | ||
//! HOSTNAME: `192.168.1.13`, CPU: `<UNKNOWN>` | ||
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("bridge-hub-rococo-dev"), DB CACHE: 1024 | ||
|
||
// Executed Command: | ||
// ../target/release/polkadot-parachain | ||
// benchmark | ||
// pallet | ||
// --chain=bridge-hub-rococo-dev | ||
// --pallet=snowbridge_outbound_queue | ||
// --extrinsic=* | ||
// --execution=wasm | ||
// --wasm-execution=compiled | ||
// --output | ||
// ../parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/snowbridge_outbound_queue.rs | ||
|
||
#![cfg_attr(rustfmt, rustfmt_skip)] | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
#![allow(missing_docs)] | ||
|
||
use frame_support::{traits::Get, weights::Weight}; | ||
use core::marker::PhantomData; | ||
|
||
/// Weight functions for `snowbridge_outbound_queue`. | ||
pub struct WeightInfo<T>(PhantomData<T>); | ||
impl<T: frame_system::Config> snowbridge_outbound_queue::WeightInfo for WeightInfo<T> { | ||
/// Storage: EthereumOutboundQueue MessageLeaves (r:1 w:1) | ||
/// Proof Skipped: EthereumOutboundQueue MessageLeaves (max_values: Some(1), max_size: None, mode: Measured) | ||
/// Storage: EthereumOutboundQueue PendingHighPriorityMessageCount (r:1 w:1) | ||
/// Proof: EthereumOutboundQueue PendingHighPriorityMessageCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) | ||
/// Storage: EthereumOutboundQueue Nonce (r:1 w:1) | ||
/// Proof: EthereumOutboundQueue Nonce (max_values: None, max_size: Some(20), added: 2495, mode: MaxEncodedLen) | ||
/// Storage: EthereumOutboundQueue Messages (r:1 w:1) | ||
/// Proof Skipped: EthereumOutboundQueue Messages (max_values: Some(1), max_size: None, mode: Measured) | ||
fn do_process_message() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `42` | ||
// Estimated: `3485` | ||
// Minimum execution time: 38_000_000 picoseconds. | ||
Weight::from_parts(38_000_000, 0) | ||
.saturating_add(Weight::from_parts(0, 3485)) | ||
.saturating_add(T::DbWeight::get().reads(4)) | ||
.saturating_add(T::DbWeight::get().writes(4)) | ||
} | ||
/// Storage: EthereumOutboundQueue MessageLeaves (r:1 w:0) | ||
/// Proof Skipped: EthereumOutboundQueue MessageLeaves (max_values: Some(1), max_size: None, mode: Measured) | ||
/// Storage: System Digest (r:1 w:1) | ||
/// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured) | ||
fn on_finalize() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `1094` | ||
// Estimated: `2579` | ||
// Minimum execution time: 28_000_000 picoseconds. | ||
Weight::from_parts(28_000_000, 0) | ||
.saturating_add(Weight::from_parts(0, 2579)) | ||
.saturating_add(T::DbWeight::get().reads(2)) | ||
.saturating_add(T::DbWeight::get().writes(1)) | ||
} | ||
} |