mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-22 10:15:42 +00:00
Remove dmp-queue pallet from Rococo Asset Hub and Bridge Hub (#2483)
DMP queue migration is complete and the pallet should be removed to fix the check runtime upgrade CI. <img width="1501" alt="Screenshot 2023-11-24 at 16 05 37" src="https://github.com/paritytech/polkadot-sdk/assets/16665596/ee1da6bb-2756-4423-8085-1e4c73553ad5"> <img width="1501" alt="Screenshot 2023-11-24 at 16 06 44" src="https://github.com/paritytech/polkadot-sdk/assets/16665596/03f3e88f-aed8-4eaa-aab6-7998f72258be">
This commit is contained in:
Generated
-2
@@ -924,7 +924,6 @@ dependencies = [
|
|||||||
"bp-bridge-hub-rococo",
|
"bp-bridge-hub-rococo",
|
||||||
"bp-bridge-hub-westend",
|
"bp-bridge-hub-westend",
|
||||||
"cumulus-pallet-aura-ext",
|
"cumulus-pallet-aura-ext",
|
||||||
"cumulus-pallet-dmp-queue",
|
|
||||||
"cumulus-pallet-parachain-system",
|
"cumulus-pallet-parachain-system",
|
||||||
"cumulus-pallet-session-benchmarking",
|
"cumulus-pallet-session-benchmarking",
|
||||||
"cumulus-pallet-xcm",
|
"cumulus-pallet-xcm",
|
||||||
@@ -2158,7 +2157,6 @@ dependencies = [
|
|||||||
"bridge-hub-test-utils",
|
"bridge-hub-test-utils",
|
||||||
"bridge-runtime-common",
|
"bridge-runtime-common",
|
||||||
"cumulus-pallet-aura-ext",
|
"cumulus-pallet-aura-ext",
|
||||||
"cumulus-pallet-dmp-queue",
|
|
||||||
"cumulus-pallet-parachain-system",
|
"cumulus-pallet-parachain-system",
|
||||||
"cumulus-pallet-session-benchmarking",
|
"cumulus-pallet-session-benchmarking",
|
||||||
"cumulus-pallet-xcm",
|
"cumulus-pallet-xcm",
|
||||||
|
|||||||
@@ -7,74 +7,86 @@ description = "Rococo variant of Asset Hub parachain runtime"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
||||||
|
"derive",
|
||||||
|
"max-encoded-len",
|
||||||
|
] }
|
||||||
hex-literal = { version = "0.4.1" }
|
hex-literal = { version = "0.4.1" }
|
||||||
log = { version = "0.4.20", default-features = false }
|
log = { version = "0.4.20", default-features = false }
|
||||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "2.10.0", default-features = false, features = [
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
smallvec = "1.11.0"
|
smallvec = "1.11.0"
|
||||||
|
|
||||||
# Substrate
|
# Substrate
|
||||||
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
||||||
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false}
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false }
|
||||||
frame-support = { path = "../../../../../substrate/frame/support", default-features = false}
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
|
||||||
frame-system = { path = "../../../../../substrate/frame/system", default-features = false}
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false }
|
||||||
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true}
|
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true }
|
||||||
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false}
|
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
||||||
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true}
|
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true }
|
||||||
pallet-asset-conversion-tx-payment = { path = "../../../../../substrate/frame/transaction-payment/asset-conversion-tx-payment", default-features = false}
|
pallet-asset-conversion-tx-payment = { path = "../../../../../substrate/frame/transaction-payment/asset-conversion-tx-payment", default-features = false }
|
||||||
pallet-assets = { path = "../../../../../substrate/frame/assets", default-features = false}
|
pallet-assets = { path = "../../../../../substrate/frame/assets", default-features = false }
|
||||||
pallet-asset-conversion = { path = "../../../../../substrate/frame/asset-conversion", default-features = false}
|
pallet-asset-conversion = { path = "../../../../../substrate/frame/asset-conversion", default-features = false }
|
||||||
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false}
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false }
|
||||||
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false}
|
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false }
|
||||||
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false}
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false }
|
||||||
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false}
|
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false }
|
||||||
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false}
|
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false }
|
||||||
pallet-nft-fractionalization = { path = "../../../../../substrate/frame/nft-fractionalization", default-features = false}
|
pallet-nft-fractionalization = { path = "../../../../../substrate/frame/nft-fractionalization", default-features = false }
|
||||||
pallet-nfts = { path = "../../../../../substrate/frame/nfts", default-features = false}
|
pallet-nfts = { path = "../../../../../substrate/frame/nfts", default-features = false }
|
||||||
pallet-nfts-runtime-api = { path = "../../../../../substrate/frame/nfts/runtime-api", default-features = false}
|
pallet-nfts-runtime-api = { path = "../../../../../substrate/frame/nfts/runtime-api", default-features = false }
|
||||||
pallet-proxy = { path = "../../../../../substrate/frame/proxy", default-features = false}
|
pallet-proxy = { path = "../../../../../substrate/frame/proxy", default-features = false }
|
||||||
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false}
|
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false }
|
||||||
pallet-state-trie-migration = { path = "../../../../../substrate/frame/state-trie-migration", default-features = false, optional = true }
|
pallet-state-trie-migration = { path = "../../../../../substrate/frame/state-trie-migration", default-features = false, optional = true }
|
||||||
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false}
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false }
|
||||||
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false}
|
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false }
|
||||||
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false}
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
||||||
pallet-uniques = { path = "../../../../../substrate/frame/uniques", default-features = false}
|
pallet-uniques = { path = "../../../../../substrate/frame/uniques", default-features = false }
|
||||||
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false}
|
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false }
|
||||||
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false}
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false }
|
||||||
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false}
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false }
|
||||||
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false}
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false }
|
||||||
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false}
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
|
||||||
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false}
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false }
|
||||||
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
||||||
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false}
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false }
|
||||||
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false}
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false }
|
||||||
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false}
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false }
|
||||||
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false}
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
||||||
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false}
|
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false }
|
||||||
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false}
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false }
|
||||||
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false }
|
||||||
sp-weights = { path = "../../../../../substrate/primitives/weights", default-features = false}
|
sp-weights = { path = "../../../../../substrate/primitives/weights", default-features = false }
|
||||||
# num-traits feature needed for dex integer sq root:
|
# num-traits feature needed for dex integer sq root:
|
||||||
primitive-types = { version = "0.12.1", default-features = false, features = ["codec", "scale-info", "num-traits"] }
|
primitive-types = { version = "0.12.1", default-features = false, features = [
|
||||||
|
"codec",
|
||||||
|
"scale-info",
|
||||||
|
"num-traits",
|
||||||
|
] }
|
||||||
|
|
||||||
# Polkadot
|
# Polkadot
|
||||||
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false}
|
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false }
|
||||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false }
|
||||||
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
||||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false }
|
||||||
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false}
|
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false }
|
||||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false }
|
||||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false }
|
||||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false }
|
||||||
|
|
||||||
# Cumulus
|
# Cumulus
|
||||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||||
cumulus-pallet-dmp-queue = { path = "../../../../pallets/dmp-queue", default-features = false }
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = [
|
||||||
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
"parameterized-consensus-hook",
|
||||||
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false}
|
] }
|
||||||
|
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false }
|
||||||
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
||||||
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = ["bridging"] }
|
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = [
|
||||||
|
"bridging",
|
||||||
|
] }
|
||||||
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
||||||
cumulus-primitives-utility = { path = "../../../../primitives/utility", default-features = false }
|
cumulus-primitives-utility = { path = "../../../../primitives/utility", default-features = false }
|
||||||
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
||||||
@@ -107,7 +119,6 @@ default = [ "std" ]
|
|||||||
state-trie-version-1 = [ "pallet-state-trie-migration" ]
|
state-trie-version-1 = [ "pallet-state-trie-migration" ]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
"assets-common/runtime-benchmarks",
|
"assets-common/runtime-benchmarks",
|
||||||
"cumulus-pallet-dmp-queue/runtime-benchmarks",
|
|
||||||
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
||||||
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
||||||
@@ -142,7 +153,6 @@ runtime-benchmarks = [
|
|||||||
]
|
]
|
||||||
try-runtime = [
|
try-runtime = [
|
||||||
"cumulus-pallet-aura-ext/try-runtime",
|
"cumulus-pallet-aura-ext/try-runtime",
|
||||||
"cumulus-pallet-dmp-queue/try-runtime",
|
|
||||||
"cumulus-pallet-parachain-system/try-runtime",
|
"cumulus-pallet-parachain-system/try-runtime",
|
||||||
"cumulus-pallet-xcm/try-runtime",
|
"cumulus-pallet-xcm/try-runtime",
|
||||||
"cumulus-pallet-xcmp-queue/try-runtime",
|
"cumulus-pallet-xcmp-queue/try-runtime",
|
||||||
@@ -182,7 +192,6 @@ std = [
|
|||||||
"bp-bridge-hub-westend/std",
|
"bp-bridge-hub-westend/std",
|
||||||
"codec/std",
|
"codec/std",
|
||||||
"cumulus-pallet-aura-ext/std",
|
"cumulus-pallet-aura-ext/std",
|
||||||
"cumulus-pallet-dmp-queue/std",
|
|
||||||
"cumulus-pallet-parachain-system/std",
|
"cumulus-pallet-parachain-system/std",
|
||||||
"cumulus-pallet-session-benchmarking/std",
|
"cumulus-pallet-session-benchmarking/std",
|
||||||
"cumulus-pallet-xcm/std",
|
"cumulus-pallet-xcm/std",
|
||||||
|
|||||||
@@ -685,12 +685,6 @@ parameter_types! {
|
|||||||
pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent;
|
pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl cumulus_pallet_dmp_queue::Config for Runtime {
|
|
||||||
type WeightInfo = weights::cumulus_pallet_dmp_queue::WeightInfo<Runtime>;
|
|
||||||
type RuntimeEvent = RuntimeEvent;
|
|
||||||
type DmpSink = frame_support::traits::EnqueueWithOrigin<MessageQueue, RelayOrigin>;
|
|
||||||
}
|
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
pub const Period: u32 = 6 * HOURS;
|
pub const Period: u32 = 6 * HOURS;
|
||||||
pub const Offset: u32 = 0;
|
pub const Offset: u32 = 0;
|
||||||
@@ -912,7 +906,6 @@ construct_runtime!(
|
|||||||
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
|
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
|
||||||
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
|
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
|
||||||
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
|
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
|
||||||
DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 33,
|
|
||||||
MessageQueue: pallet_message_queue::{Pallet, Call, Storage, Event<T>} = 34,
|
MessageQueue: pallet_message_queue::{Pallet, Call, Storage, Event<T>} = 34,
|
||||||
|
|
||||||
// Handy utilities.
|
// Handy utilities.
|
||||||
|
|||||||
-131
@@ -1,131 +0,0 @@
|
|||||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Cumulus.
|
|
||||||
|
|
||||||
// Cumulus 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.
|
|
||||||
|
|
||||||
// Cumulus 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 Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
//! Autogenerated weights for `cumulus_pallet_dmp_queue`
|
|
||||||
//!
|
|
||||||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
||||||
//! DATE: 2023-10-31, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
||||||
//! WORST CASE MAP SIZE: `1000000`
|
|
||||||
//! HOSTNAME: `runner-yprdrvc7-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
||||||
//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("asset-hub-kusama-dev")`, DB CACHE: 1024
|
|
||||||
|
|
||||||
// Executed Command:
|
|
||||||
// target/production/polkadot-parachain
|
|
||||||
// benchmark
|
|
||||||
// pallet
|
|
||||||
// --steps=50
|
|
||||||
// --repeat=20
|
|
||||||
// --extrinsic=*
|
|
||||||
// --wasm-execution=compiled
|
|
||||||
// --heap-pages=4096
|
|
||||||
// --json-file=/builds/parity/mirrors/polkadot-sdk/.git/.artifacts/bench.json
|
|
||||||
// --pallet=cumulus_pallet_dmp_queue
|
|
||||||
// --chain=asset-hub-kusama-dev
|
|
||||||
// --header=./cumulus/file_header.txt
|
|
||||||
// --output=./cumulus/parachains/runtimes/assets/asset-hub-kusama/src/weights/
|
|
||||||
|
|
||||||
#![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 `cumulus_pallet_dmp_queue`.
|
|
||||||
pub struct WeightInfo<T>(PhantomData<T>);
|
|
||||||
impl<T: frame_system::Config> cumulus_pallet_dmp_queue::WeightInfo for WeightInfo<T> {
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Storage: `MessageQueue::BookStateFor` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::ServiceHead` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::Pages` (r:0 w:1)
|
|
||||||
/// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`)
|
|
||||||
fn on_idle_good_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65696`
|
|
||||||
// Estimated: `69161`
|
|
||||||
// Minimum execution time: 124_651_000 picoseconds.
|
|
||||||
Weight::from_parts(127_857_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69161))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(5))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(5))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
fn on_idle_large_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65659`
|
|
||||||
// Estimated: `69124`
|
|
||||||
// Minimum execution time: 65_684_000 picoseconds.
|
|
||||||
Weight::from_parts(68_039_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69124))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(3))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(2))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Storage: `MessageQueue::BookStateFor` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::ServiceHead` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::Pages` (r:0 w:1)
|
|
||||||
/// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`)
|
|
||||||
fn on_idle_overweight_good_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65726`
|
|
||||||
// Estimated: `69191`
|
|
||||||
// Minimum execution time: 117_657_000 picoseconds.
|
|
||||||
Weight::from_parts(122_035_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69191))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(6))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(6))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
fn on_idle_overweight_large_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65689`
|
|
||||||
// Estimated: `69154`
|
|
||||||
// Minimum execution time: 59_799_000 picoseconds.
|
|
||||||
Weight::from_parts(61_354_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69154))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(4))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(3))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -15,7 +15,6 @@
|
|||||||
// along with Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
// along with Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
pub mod block_weights;
|
pub mod block_weights;
|
||||||
pub mod cumulus_pallet_dmp_queue;
|
|
||||||
pub mod cumulus_pallet_parachain_system;
|
pub mod cumulus_pallet_parachain_system;
|
||||||
pub mod cumulus_pallet_xcmp_queue;
|
pub mod cumulus_pallet_xcmp_queue;
|
||||||
pub mod extrinsic_weights;
|
pub mod extrinsic_weights;
|
||||||
|
|||||||
@@ -10,64 +10,71 @@ license = "Apache-2.0"
|
|||||||
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder", optional = true }
|
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder", optional = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
hex-literal = { version = "0.4.1" }
|
hex-literal = { version = "0.4.1" }
|
||||||
log = { version = "0.4.20", default-features = false }
|
log = { version = "0.4.20", default-features = false }
|
||||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "2.10.0", default-features = false, features = [
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
serde = { version = "1.0.188", optional = true, features = ["derive"] }
|
serde = { version = "1.0.188", optional = true, features = ["derive"] }
|
||||||
smallvec = "1.11.0"
|
smallvec = "1.11.0"
|
||||||
|
|
||||||
# Substrate
|
# Substrate
|
||||||
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
||||||
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false}
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false }
|
||||||
frame-support = { path = "../../../../../substrate/frame/support", default-features = false}
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
|
||||||
frame-system = { path = "../../../../../substrate/frame/system", default-features = false}
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false }
|
||||||
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true}
|
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true }
|
||||||
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false}
|
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
||||||
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true}
|
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true }
|
||||||
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false}
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false }
|
||||||
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false}
|
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false }
|
||||||
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false}
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false }
|
||||||
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false}
|
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false }
|
||||||
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false }
|
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false }
|
||||||
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false}
|
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false }
|
||||||
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false}
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false }
|
||||||
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false}
|
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false }
|
||||||
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false}
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
||||||
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false}
|
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false }
|
||||||
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false}
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false }
|
||||||
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false}
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false }
|
||||||
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false}
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false }
|
||||||
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false}
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
|
||||||
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
||||||
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false}
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false }
|
||||||
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false}
|
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false }
|
||||||
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false}
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false }
|
||||||
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false}
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false }
|
||||||
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false}
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false }
|
||||||
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false}
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
||||||
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false}
|
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false }
|
||||||
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false}
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false }
|
||||||
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false }
|
||||||
|
|
||||||
# Polkadot
|
# Polkadot
|
||||||
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false}
|
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false }
|
||||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false }
|
||||||
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
||||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false }
|
||||||
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false}
|
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false }
|
||||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false }
|
||||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false }
|
||||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false }
|
||||||
|
|
||||||
# Cumulus
|
# Cumulus
|
||||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||||
cumulus-pallet-dmp-queue = { path = "../../../../pallets/dmp-queue", default-features = false }
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = [
|
||||||
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
"parameterized-consensus-hook",
|
||||||
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false}
|
] }
|
||||||
|
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false }
|
||||||
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
||||||
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = ["bridging"] }
|
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = [
|
||||||
|
"bridging",
|
||||||
|
] }
|
||||||
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
||||||
cumulus-primitives-utility = { path = "../../../../primitives/utility", default-features = false }
|
cumulus-primitives-utility = { path = "../../../../primitives/utility", default-features = false }
|
||||||
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
||||||
@@ -96,7 +103,9 @@ bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", de
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
static_assertions = "1.1"
|
static_assertions = "1.1"
|
||||||
bridge-hub-test-utils = { path = "../test-utils" }
|
bridge-hub-test-utils = { path = "../test-utils" }
|
||||||
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", features = ["integrity-test"] }
|
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", features = [
|
||||||
|
"integrity-test",
|
||||||
|
] }
|
||||||
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
@@ -117,7 +126,6 @@ std = [
|
|||||||
"bridge-runtime-common/std",
|
"bridge-runtime-common/std",
|
||||||
"codec/std",
|
"codec/std",
|
||||||
"cumulus-pallet-aura-ext/std",
|
"cumulus-pallet-aura-ext/std",
|
||||||
"cumulus-pallet-dmp-queue/std",
|
|
||||||
"cumulus-pallet-parachain-system/std",
|
"cumulus-pallet-parachain-system/std",
|
||||||
"cumulus-pallet-session-benchmarking/std",
|
"cumulus-pallet-session-benchmarking/std",
|
||||||
"cumulus-pallet-xcm/std",
|
"cumulus-pallet-xcm/std",
|
||||||
@@ -179,7 +187,6 @@ std = [
|
|||||||
|
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
"bridge-runtime-common/runtime-benchmarks",
|
"bridge-runtime-common/runtime-benchmarks",
|
||||||
"cumulus-pallet-dmp-queue/runtime-benchmarks",
|
|
||||||
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
||||||
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
||||||
@@ -211,7 +218,6 @@ runtime-benchmarks = [
|
|||||||
|
|
||||||
try-runtime = [
|
try-runtime = [
|
||||||
"cumulus-pallet-aura-ext/try-runtime",
|
"cumulus-pallet-aura-ext/try-runtime",
|
||||||
"cumulus-pallet-dmp-queue/try-runtime",
|
|
||||||
"cumulus-pallet-parachain-system/try-runtime",
|
"cumulus-pallet-parachain-system/try-runtime",
|
||||||
"cumulus-pallet-xcm/try-runtime",
|
"cumulus-pallet-xcm/try-runtime",
|
||||||
"cumulus-pallet-xcmp-queue/try-runtime",
|
"cumulus-pallet-xcmp-queue/try-runtime",
|
||||||
|
|||||||
@@ -394,12 +394,6 @@ parameter_types! {
|
|||||||
pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent;
|
pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl cumulus_pallet_dmp_queue::Config for Runtime {
|
|
||||||
type WeightInfo = weights::cumulus_pallet_dmp_queue::WeightInfo<Runtime>;
|
|
||||||
type RuntimeEvent = RuntimeEvent;
|
|
||||||
type DmpSink = frame_support::traits::EnqueueWithOrigin<MessageQueue, RelayOrigin>;
|
|
||||||
}
|
|
||||||
|
|
||||||
pub const PERIOD: u32 = 6 * HOURS;
|
pub const PERIOD: u32 = 6 * HOURS;
|
||||||
pub const OFFSET: u32 = 0;
|
pub const OFFSET: u32 = 0;
|
||||||
|
|
||||||
@@ -500,7 +494,6 @@ construct_runtime!(
|
|||||||
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
|
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
|
||||||
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
|
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
|
||||||
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
|
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
|
||||||
DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 33,
|
|
||||||
|
|
||||||
// Handy utilities.
|
// Handy utilities.
|
||||||
Utility: pallet_utility::{Pallet, Call, Event} = 40,
|
Utility: pallet_utility::{Pallet, Call, Event} = 40,
|
||||||
@@ -552,7 +545,6 @@ mod benches {
|
|||||||
[pallet_collator_selection, CollatorSelection]
|
[pallet_collator_selection, CollatorSelection]
|
||||||
[cumulus_pallet_parachain_system, ParachainSystem]
|
[cumulus_pallet_parachain_system, ParachainSystem]
|
||||||
[cumulus_pallet_xcmp_queue, XcmpQueue]
|
[cumulus_pallet_xcmp_queue, XcmpQueue]
|
||||||
[cumulus_pallet_dmp_queue, DmpQueue]
|
|
||||||
// XCM
|
// XCM
|
||||||
[pallet_xcm, PalletXcmExtrinsicsBenchmark::<Runtime>]
|
[pallet_xcm, PalletXcmExtrinsicsBenchmark::<Runtime>]
|
||||||
// NOTE: Make sure you point to the individual modules below.
|
// NOTE: Make sure you point to the individual modules below.
|
||||||
|
|||||||
-131
@@ -1,131 +0,0 @@
|
|||||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Cumulus.
|
|
||||||
|
|
||||||
// Cumulus 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.
|
|
||||||
|
|
||||||
// Cumulus 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 Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
//! Autogenerated weights for `cumulus_pallet_dmp_queue`
|
|
||||||
//!
|
|
||||||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
||||||
//! DATE: 2023-10-31, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
||||||
//! WORST CASE MAP SIZE: `1000000`
|
|
||||||
//! HOSTNAME: `runner-yprdrvc7-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
||||||
//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("asset-hub-kusama-dev")`, DB CACHE: 1024
|
|
||||||
|
|
||||||
// Executed Command:
|
|
||||||
// target/production/polkadot-parachain
|
|
||||||
// benchmark
|
|
||||||
// pallet
|
|
||||||
// --steps=50
|
|
||||||
// --repeat=20
|
|
||||||
// --extrinsic=*
|
|
||||||
// --wasm-execution=compiled
|
|
||||||
// --heap-pages=4096
|
|
||||||
// --json-file=/builds/parity/mirrors/polkadot-sdk/.git/.artifacts/bench.json
|
|
||||||
// --pallet=cumulus_pallet_dmp_queue
|
|
||||||
// --chain=asset-hub-kusama-dev
|
|
||||||
// --header=./cumulus/file_header.txt
|
|
||||||
// --output=./cumulus/parachains/runtimes/assets/asset-hub-kusama/src/weights/
|
|
||||||
|
|
||||||
#![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 `cumulus_pallet_dmp_queue`.
|
|
||||||
pub struct WeightInfo<T>(PhantomData<T>);
|
|
||||||
impl<T: frame_system::Config> cumulus_pallet_dmp_queue::WeightInfo for WeightInfo<T> {
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Storage: `MessageQueue::BookStateFor` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::ServiceHead` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::Pages` (r:0 w:1)
|
|
||||||
/// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`)
|
|
||||||
fn on_idle_good_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65696`
|
|
||||||
// Estimated: `69161`
|
|
||||||
// Minimum execution time: 124_651_000 picoseconds.
|
|
||||||
Weight::from_parts(127_857_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69161))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(5))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(5))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca7d95d3e948effbeccff2de2c182672836` (r:1 w:1)
|
|
||||||
fn on_idle_large_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65659`
|
|
||||||
// Estimated: `69124`
|
|
||||||
// Minimum execution time: 65_684_000 picoseconds.
|
|
||||||
Weight::from_parts(68_039_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69124))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(3))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(2))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Storage: `MessageQueue::BookStateFor` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::BookStateFor` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::ServiceHead` (r:1 w:1)
|
|
||||||
/// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: `MessageQueue::Pages` (r:0 w:1)
|
|
||||||
/// Proof: `MessageQueue::Pages` (`max_values`: None, `max_size`: Some(65585), added: 68060, mode: `MaxEncodedLen`)
|
|
||||||
fn on_idle_overweight_good_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65726`
|
|
||||||
// Estimated: `69191`
|
|
||||||
// Minimum execution time: 117_657_000 picoseconds.
|
|
||||||
Weight::from_parts(122_035_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69191))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(6))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(6))
|
|
||||||
}
|
|
||||||
/// Storage: `DmpQueue::MigrationStatus` (r:1 w:1)
|
|
||||||
/// Proof: `DmpQueue::MigrationStatus` (`max_values`: Some(1), `max_size`: Some(1028), added: 1523, mode: `MaxEncodedLen`)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca754904d6d8c6fe06c4e5965f9b8397421` (r:1 w:0)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca70f923ef3252d0166429d36d20ed665a8` (r:1 w:1)
|
|
||||||
/// Storage: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
/// Proof: UNKNOWN KEY `0xcd5c1f6df63bc97f4a8ce37f14a50ca772275f64c354954352b71eea39cfaca2` (r:1 w:1)
|
|
||||||
fn on_idle_overweight_large_msg() -> Weight {
|
|
||||||
// Proof Size summary in bytes:
|
|
||||||
// Measured: `65689`
|
|
||||||
// Estimated: `69154`
|
|
||||||
// Minimum execution time: 59_799_000 picoseconds.
|
|
||||||
Weight::from_parts(61_354_000, 0)
|
|
||||||
.saturating_add(Weight::from_parts(0, 69154))
|
|
||||||
.saturating_add(T::DbWeight::get().reads(4))
|
|
||||||
.saturating_add(T::DbWeight::get().writes(3))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,7 +21,6 @@ use ::pallet_bridge_messages::WeightInfoExt as MessagesWeightInfoExt;
|
|||||||
use ::pallet_bridge_parachains::WeightInfoExt as ParachainsWeightInfoExt;
|
use ::pallet_bridge_parachains::WeightInfoExt as ParachainsWeightInfoExt;
|
||||||
|
|
||||||
pub mod block_weights;
|
pub mod block_weights;
|
||||||
pub mod cumulus_pallet_dmp_queue;
|
|
||||||
pub mod cumulus_pallet_parachain_system;
|
pub mod cumulus_pallet_parachain_system;
|
||||||
pub mod cumulus_pallet_xcmp_queue;
|
pub mod cumulus_pallet_xcmp_queue;
|
||||||
pub mod extrinsic_weights;
|
pub mod extrinsic_weights;
|
||||||
|
|||||||
Reference in New Issue
Block a user