difftreelog
Merge pull request #896 from UniqueNetwork/fix/pallet-xcm-storage-part
in: master
2 files changed
runtime/common/config/xcm/mod.rsdiffbeforeafterboth221 type Barrier = Barrier;221 type Barrier = Barrier;222 type Weigher = Weigher;222 type Weigher = Weigher;223 type Trader = Trader<T>;223 type Trader = Trader<T>;224 type ResponseHandler = (); // Don't handle responses for now.224 type ResponseHandler = PolkadotXcm;225 type SubscriptionService = PolkadotXcm;225 type SubscriptionService = PolkadotXcm;226226227 type AssetTrap = PolkadotXcm;227 type AssetTrap = PolkadotXcm;runtime/common/construct_runtime.rsdiffbeforeafterboth--- a/runtime/common/construct_runtime.rs
+++ b/runtime/common/construct_runtime.rs
@@ -38,8 +38,8 @@
#[cfg(feature = "collator-selection")]
Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 24,
- Aura: pallet_aura::{Pallet, Config<T>} = 25,
- AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 26,
+ Aura: pallet_aura::{Pallet, Storage, Config<T>} = 25,
+ AuraExt: cumulus_pallet_aura_ext::{Pallet, Storage, Config} = 26,
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,
@@ -61,7 +61,7 @@
// XCM helpers.
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,
- PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,
+ PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin} = 51,
CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,
DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,