mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 10:31:03 +00:00
cargo fmt to resolve duplicate imports on merge
This commit is contained in:
@@ -247,8 +247,8 @@ impl pallet_assets::Config<TrustBackedAssetsInstance> for Runtime {
|
||||
}
|
||||
|
||||
/// Assets managed by some foreign location.
|
||||
type ForeignAssetClasses = pallet_assets::Instance2;
|
||||
impl pallet_assets::Config<ForeignAssetClasses> for Runtime {
|
||||
type ForeignAssetsInstance = pallet_assets::Instance2;
|
||||
impl pallet_assets::Config<ForeignAssetsInstance> for Runtime {
|
||||
type RuntimeEvent = RuntimeEvent;
|
||||
type Balance = Balance;
|
||||
// TODO: impl Copy for MultiLocation or relax AssetId to Clone?
|
||||
|
||||
@@ -15,17 +15,12 @@
|
||||
|
||||
use super::{
|
||||
AccountId, AllPalletsWithSystem, AssetId, Assets, Authorship, Balance, Balances, ParachainInfo,
|
||||
ParachainSystem, PolkadotXcm, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin, WeightToFee,
|
||||
XcmpQueue,
|
||||
AccountId, AssetId, Authorship, Balance, Balances, ParachainInfo, ParachainSystem, PolkadotXcm,
|
||||
Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin, TrustBackedAssets,
|
||||
TrustBackedAssetsInstance, WeightToFee, XcmpQueue,
|
||||
ParachainSystem, PolkadotXcm, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin,
|
||||
TrustBackedAssets, TrustBackedAssetsInstance, WeightToFee, XcmpQueue,
|
||||
};
|
||||
use frame_support::{
|
||||
match_types, parameter_types,
|
||||
traits::{ConstU32, Everything, Nothing, PalletInfoAccess},
|
||||
traits::{EnsureOriginWithArg, Everything, PalletInfoAccess},
|
||||
traits::{EnsureOrigin, EnsureOriginWithArg, Everything, PalletInfoAccess},
|
||||
traits::{ConstU32, EnsureOrigin, EnsureOriginWithArg, Everything, Nothing, PalletInfoAccess},
|
||||
};
|
||||
use pallet_xcm::{EnsureXcm, XcmPassthrough};
|
||||
use parachains_common::{
|
||||
|
||||
@@ -31,10 +31,9 @@ use xcm::latest::prelude::*;
|
||||
use xcm_builder::{
|
||||
AccountId32Aliases, AllowKnownQueryResponses, AllowSubscriptionsFrom,
|
||||
AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter, EnsureXcmOrigin,
|
||||
FixedWeightBounds, IsConcrete, ParentAsSuperuser, ParentIsPreset,
|
||||
RelayChainAsNative, SiblingParachainAsNative, SiblingParachainConvertsVia,
|
||||
SignedAccountId32AsNative, SignedToAccountId32, SovereignSignedViaLocation, TakeWeightCredit,
|
||||
UsingComponents,
|
||||
FixedWeightBounds, IsConcrete, ParentAsSuperuser, ParentIsPreset, RelayChainAsNative,
|
||||
SiblingParachainAsNative, SiblingParachainConvertsVia, SignedAccountId32AsNative,
|
||||
SignedToAccountId32, SovereignSignedViaLocation, TakeWeightCredit, UsingComponents,
|
||||
};
|
||||
use xcm_executor::XcmExecutor;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user