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 edffda7 commit edab2d5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/inflation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#![cfg_attr(not(feature = "std"), no_std)]
#![deny(missing_docs)]
#![deny(unused_crate_dependencies)]
// #![deny(unused_crate_dependencies)]

#[cfg(test)]
mod test;
Expand Down
2 changes: 1 addition & 1 deletion core/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#![no_std]
#![deny(missing_docs)]
#![deny(unused_crate_dependencies)]
// #![deny(unused_crate_dependencies)]

/// Balance type.
pub type Balance = u128;
Expand Down
1 change: 1 addition & 0 deletions runtime/crab/src/pallets/polkadot_xcm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
DealWithFees<Runtime>,
ToTreasury,
>;
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
type UniversalAliases = frame_support::traits::Nothing;
// Teleporting is disabled.
type UniversalLocation = UniversalLocation;
Expand Down
1 change: 1 addition & 0 deletions runtime/darwinia/src/pallets/polkadot_xcm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
XcmFeesToAccount,
>,
);
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
type UniversalAliases = frame_support::traits::Nothing;
// Teleporting is disabled.
type UniversalLocation = UniversalLocation;
Expand Down
4 changes: 2 additions & 2 deletions runtime/koi/src/pallets/polkadot_xcm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@

// darwinia
use crate::*;
// polkadot
use xcm::latest::prelude::*;
// substrate
use xcm::latest::prelude::*;
use frame_support::traits::Currency;

/// Means for transacting assets on this chain.
Expand Down Expand Up @@ -263,6 +262,7 @@ impl xcm_executor::Config for XcmExecutorConfig {
XcmFeesToAccount,
>,
);
type TransactionalProcessor = xcm_builder::FrameTransactionalProcessor;
type UniversalAliases = frame_support::traits::Nothing;
// Teleporting is disabled.
type UniversalLocation = UniversalLocation;
Expand Down

0 comments on commit edab2d5

Please sign in to comment.