make parachain system config consistent (#538)

This commit is contained in:
Shawn Tabrizi
2021-07-14 23:44:39 -04:00
committed by GitHub
parent 303b194f4a
commit a3c33fd31d
8 changed files with 22 additions and 8 deletions
+3 -1
View File
@@ -38,7 +38,9 @@ frame_support::construct_runtime!(
{
System: frame_system::{Pallet, Call, Config, Storage, Event<T>},
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Config, Storage, Inherent, Event<T>},
ParachainSystem: cumulus_pallet_parachain_system::{
Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned,
},
XcmpQueue: xcmp_queue::{Pallet, Call, Storage, Event<T>},
}
);