git.delta.rocks / unique-network / refs/commits / 94299ed3c087

difftreelog

Merge pull request #896 from UniqueNetwork/fix/pallet-xcm-storage-part

Yaroslav Bolyukin2023-03-02parents: #6a928c9 #357016e.patch.diff
in: master

2 files changed

modifiedruntime/common/config/xcm/mod.rsdiffbeforeafterboth
221 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;
226226
227 type AssetTrap = PolkadotXcm;227 type AssetTrap = PolkadotXcm;
modifiedruntime/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,