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
--- a/runtime/common/config/xcm/mod.rs
+++ b/runtime/common/config/xcm/mod.rs
@@ -221,7 +221,7 @@
 	type Barrier = Barrier;
 	type Weigher = Weigher;
 	type Trader = Trader<T>;
-	type ResponseHandler = (); // Don't handle responses for now.
+	type ResponseHandler = PolkadotXcm;
 	type SubscriptionService = PolkadotXcm;
 
 	type AssetTrap = PolkadotXcm;
modifiedruntime/common/construct_runtime.rsdiffbeforeafterboth
38 #[cfg(feature = "collator-selection")]38 #[cfg(feature = "collator-selection")]
39 Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 24,39 Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 24,
4040
41 Aura: pallet_aura::{Pallet, Config<T>} = 25,41 Aura: pallet_aura::{Pallet, Storage, Config<T>} = 25,
42 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 26,42 AuraExt: cumulus_pallet_aura_ext::{Pallet, Storage, Config} = 26,
4343
44 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,44 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,
45 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,45 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,
6161
62 // XCM helpers.62 // XCM helpers.
63 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,63 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,
64 PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,64 PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin} = 51,
65 CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,65 CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,
66 DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,66 DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,
6767