mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 05:11:02 +00:00
7554f53f9e
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">
75 lines
2.5 KiB
Rust
75 lines
2.5 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Expose the auto generated weight files.
|
|
|
|
use ::pallet_bridge_messages::WeightInfoExt as MessagesWeightInfoExt;
|
|
use ::pallet_bridge_parachains::WeightInfoExt as ParachainsWeightInfoExt;
|
|
|
|
pub mod block_weights;
|
|
pub mod cumulus_pallet_parachain_system;
|
|
pub mod cumulus_pallet_xcmp_queue;
|
|
pub mod extrinsic_weights;
|
|
pub mod frame_system;
|
|
pub mod pallet_balances;
|
|
pub mod pallet_bridge_grandpa;
|
|
pub mod pallet_bridge_messages;
|
|
pub mod pallet_bridge_parachains;
|
|
pub mod pallet_bridge_relayers;
|
|
pub mod pallet_collator_selection;
|
|
pub mod pallet_message_queue;
|
|
pub mod pallet_multisig;
|
|
pub mod pallet_session;
|
|
pub mod pallet_timestamp;
|
|
pub mod pallet_utility;
|
|
pub mod pallet_xcm;
|
|
pub mod paritydb_weights;
|
|
pub mod rocksdb_weights;
|
|
pub mod xcm;
|
|
|
|
pub use block_weights::constants::BlockExecutionWeight;
|
|
pub use extrinsic_weights::constants::ExtrinsicBaseWeight;
|
|
pub use paritydb_weights::constants::ParityDbWeight;
|
|
pub use rocksdb_weights::constants::RocksDbWeight;
|
|
|
|
use crate::Runtime;
|
|
use frame_support::weights::Weight;
|
|
|
|
// import trait from dependency module
|
|
use ::pallet_bridge_relayers::WeightInfoExt as _;
|
|
|
|
impl MessagesWeightInfoExt for pallet_bridge_messages::WeightInfo<crate::Runtime> {
|
|
fn expected_extra_storage_proof_size() -> u32 {
|
|
bp_bridge_hub_westend::EXTRA_STORAGE_PROOF_SIZE
|
|
}
|
|
|
|
fn receive_messages_proof_overhead_from_runtime() -> Weight {
|
|
pallet_bridge_relayers::WeightInfo::<Runtime>::receive_messages_proof_overhead_from_runtime(
|
|
)
|
|
}
|
|
|
|
fn receive_messages_delivery_proof_overhead_from_runtime() -> Weight {
|
|
pallet_bridge_relayers::WeightInfo::<Runtime>::receive_messages_delivery_proof_overhead_from_runtime()
|
|
}
|
|
}
|
|
|
|
impl ParachainsWeightInfoExt for pallet_bridge_parachains::WeightInfo<crate::Runtime> {
|
|
fn expected_extra_storage_proof_size() -> u32 {
|
|
bp_bridge_hub_westend::EXTRA_STORAGE_PROOF_SIZE
|
|
}
|
|
}
|