Skip to content

Commit edab2d5

Browse files
committed
1 parent edffda7 commit edab2d5

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

core/inflation/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
#![cfg_attr(not(feature = "std"), no_std)]
2222
#![deny(missing_docs)]
23-
#![deny(unused_crate_dependencies)]
23+
// #![deny(unused_crate_dependencies)]
2424

2525
#[cfg(test)]
2626
mod test;

core/types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
#![no_std]
2222
#![deny(missing_docs)]
23-
#![deny(unused_crate_dependencies)]
23+
// #![deny(unused_crate_dependencies)]
2424

2525
/// Balance type.
2626
pub type Balance = u128;

runtime/crab/src/pallets/polkadot_xcm.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
167167
DealWithFees<Runtime>,
168168
ToTreasury,
169169
>;
170+
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
170171
type UniversalAliases = frame_support::traits::Nothing;
171172
// Teleporting is disabled.
172173
type UniversalLocation = UniversalLocation;

runtime/darwinia/src/pallets/polkadot_xcm.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
263263
XcmFeesToAccount,
264264
>,
265265
);
266+
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
266267
type UniversalAliases = frame_support::traits::Nothing;
267268
// Teleporting is disabled.
268269
type UniversalLocation = UniversalLocation;

runtime/koi/src/pallets/polkadot_xcm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818

1919
// darwinia
2020
use crate::*;
21-
// polkadot
22-
use xcm::latest::prelude::*;
2321
// substrate
22+
use xcm::latest::prelude::*;
2423
use frame_support::traits::Currency;
2524

2625
/// Means for transacting assets on this chain.
@@ -263,6 +262,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
263262
XcmFeesToAccount,
264263
>,
265264
);
265+
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
266266
type UniversalAliases = frame_support::traits::Nothing;
267267
// Teleporting is disabled.
268268
type UniversalLocation = UniversalLocation;

0 commit comments

Comments
 (0)