@@ -5,7 +5,9 @@ pub mod xcm_config;
55use crate :: mock_message_queue;
66use crate :: storagehub:: { configs:: xcm_config:: XcmConfig , MessageQueue , ParachainInfo , PolkadotXcm } ;
77use core:: marker:: PhantomData ;
8- use cumulus_pallet_parachain_system:: { RelayChainStateProof , RelayNumberMonotonicallyIncreases } ;
8+ use cumulus_pallet_parachain_system:: {
9+ DefaultCoreSelector , RelayChainStateProof , RelayNumberMonotonicallyIncreases ,
10+ } ;
911use cumulus_primitives_core:: {
1012 relay_chain:: well_known_keys, AggregateMessageOrigin , AssetId , ParaId ,
1113} ;
@@ -158,6 +160,7 @@ impl pallet_balances::Config for Runtime {
158160 type RuntimeFreezeReason = RuntimeFreezeReason ;
159161 type FreezeIdentifier = ( ) ;
160162 type MaxFreezes = ConstU32 < 0 > ;
163+ type DoneSlashHandler = ( ) ;
161164}
162165
163166parameter_types ! {
@@ -172,6 +175,7 @@ impl pallet_transaction_payment::Config for Runtime {
172175 type LengthToFee = ConstantMultiplier < Balance , TransactionByteFee > ;
173176 type FeeMultiplierUpdate = SlowAdjustingFeeUpdate < Self > ;
174177 type OperationalFeeMultiplier = ConstU8 < 5 > ;
178+ type WeightInfo = ( ) ;
175179}
176180
177181impl pallet_sudo:: Config for Runtime {
@@ -203,6 +207,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime {
203207 type ReservedXcmpWeight = ReservedXcmpWeight ;
204208 type CheckAssociatedRelayNumber = RelayNumberMonotonicallyIncreases ;
205209 type ConsensusHook = ConsensusHook ;
210+ type SelectCore = DefaultCoreSelector < Runtime > ;
206211}
207212pub ( crate ) type ConsensusHook = cumulus_pallet_aura_ext:: FixedVelocityConsensusHook <
208213 Runtime ,
0 commit comments