Skip to content

Commit 8b28031

Browse files
authored
Add Storage to PolkadotXcm for People Chains (#2959)
After People Rococo deployment, we noticed that `safeXcmVersion` wasn't initialised. I think it is due to `Storage` missing in the pallet's declaration. This PR should fix it.
1 parent c01dbeb commit 8b28031

File tree

2 files changed

+2
-2
lines changed
  • cumulus/parachains/runtimes/people

2 files changed

+2
-2
lines changed

cumulus/parachains/runtimes/people/people-rococo/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ construct_runtime!(
428428

429429
// XCM & related
430430
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
431-
PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin, Config<T>} = 31,
431+
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
432432
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
433433
MessageQueue: pallet_message_queue::{Pallet, Call, Storage, Event<T>} = 34,
434434

cumulus/parachains/runtimes/people/people-westend/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ construct_runtime!(
428428

429429
// XCM helpers.
430430
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
431-
PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin, Config<T>} = 31,
431+
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
432432
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
433433
MessageQueue: pallet_message_queue::{Pallet, Call, Storage, Event<T>} = 34,
434434

0 commit comments

Comments
 (0)