1 2 3 4 5 6 7 8 9
// Copyright 2021 ChainSafe Systems
// SPDX-License-Identifier: LGPL-3.0-only
//! PINT common traits
/// Weights of Xcm calls for different runtimes
pub trait XcmRuntimeCallWeights {
fn polkadot() -> Self;
fn kusama() -> Self;
}
1 2 3 4 5 6 7 8 9
// Copyright 2021 ChainSafe Systems
// SPDX-License-Identifier: LGPL-3.0-only
//! PINT common traits
/// Weights of Xcm calls for different runtimes
pub trait XcmRuntimeCallWeights {
fn polkadot() -> Self;
fn kusama() -> Self;
}