Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jun 24, 2024
1 parent edab2d5 commit a3b4432
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion runtime/crab/src/pallets/xcmp_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type ControllerOrigin = Root;
type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin;
type ExecuteOverweightOrigin = Root;
type PriceForSiblingDelivery = ();
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type RuntimeEvent = RuntimeEvent;
type VersionWrapper = ();
type WeightInfo = weights::cumulus_pallet_xcmp_queue::WeightInfo<Self>;
Expand Down
4 changes: 3 additions & 1 deletion runtime/darwinia/src/pallets/xcmp_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type ControllerOrigin = Root;
type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin;
type ExecuteOverweightOrigin = Root;
type PriceForSiblingDelivery = ();
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type RuntimeEvent = RuntimeEvent;
type VersionWrapper = ();
type WeightInfo = weights::cumulus_pallet_xcmp_queue::WeightInfo<Self>;
Expand Down
4 changes: 3 additions & 1 deletion runtime/koi/src/pallets/xcmp_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type ControllerOrigin = RootOr<GeneralAdmin>;
type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin;
type ExecuteOverweightOrigin = RootOr<GeneralAdmin>;
type PriceForSiblingDelivery = ();
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type RuntimeEvent = RuntimeEvent;
type VersionWrapper = ();
type WeightInfo = weights::cumulus_pallet_xcmp_queue::WeightInfo<Self>;
Expand Down

0 comments on commit a3b4432

Please sign in to comment.