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.
This commit is contained in:
Ignacio Palacios
2024-01-17 12:05:44 +01:00
committed by GitHub
parent c01dbebeaa
commit 8b28031d16
2 changed files with 2 additions and 2 deletions
@@ -428,7 +428,7 @@ construct_runtime!(
// XCM & related
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin, Config<T>} = 31,
PolkadotXcm: pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin, Config<T>} = 31,
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
MessageQueue: pallet_message_queue::{Pallet, Call, Storage, Event<T>} = 34,