@@ -43,7 +43,7 @@ use codec::{Decode, Encode, MaxEncodedLen};
43
43
use constants:: { currency:: * , fee:: WeightToFee } ;
44
44
use frame_support:: {
45
45
construct_runtime, match_type, parameter_types,
46
- traits:: { All , InstanceFilter } ,
46
+ traits:: { Everything , InstanceFilter } ,
47
47
weights:: {
48
48
constants:: { BlockExecutionWeight , ExtrinsicBaseWeight } ,
49
49
DispatchClass , IdentityFee , Weight ,
@@ -145,7 +145,7 @@ parameter_types! {
145
145
146
146
// Configure FRAME pallets to include in runtime.
147
147
impl frame_system:: Config for Runtime {
148
- type BaseCallFilter = frame_support:: traits:: AllowAll ;
148
+ type BaseCallFilter = frame_support:: traits:: Everything ;
149
149
type BlockWeights = RuntimeBlockWeights ;
150
150
type BlockLength = RuntimeBlockLength ;
151
151
type AccountId = AccountId ;
@@ -502,7 +502,7 @@ match_type! {
502
502
503
503
pub type Barrier = (
504
504
TakeWeightCredit ,
505
- AllowTopLevelPaidExecutionFrom < All < MultiLocation > > ,
505
+ AllowTopLevelPaidExecutionFrom < Everything > ,
506
506
AllowUnpaidExecutionFrom < ParentOrParentsExecutivePlurality > ,
507
507
// ^^^ Parent and its exec plurality get free execution
508
508
) ;
@@ -544,10 +544,10 @@ impl pallet_xcm::Config for Runtime {
544
544
type SendXcmOrigin = EnsureXcmOrigin < Origin , LocalOriginToLocation > ;
545
545
type XcmRouter = XcmRouter ;
546
546
type ExecuteXcmOrigin = EnsureXcmOrigin < Origin , LocalOriginToLocation > ;
547
- type XcmExecuteFilter = All < ( MultiLocation , Xcm < Call > ) > ;
547
+ type XcmExecuteFilter = Everything ;
548
548
type XcmExecutor = XcmExecutor < XcmConfig > ;
549
- type XcmTeleportFilter = All < ( MultiLocation , Vec < MultiAsset > ) > ;
550
- type XcmReserveTransferFilter = All < ( MultiLocation , Vec < MultiAsset > ) > ;
549
+ type XcmTeleportFilter = Everything ;
550
+ type XcmReserveTransferFilter = Everything ;
551
551
type Weigher = FixedWeightBounds < UnitWeightCost , Call > ;
552
552
type LocationInverter = LocationInverter < Ancestry > ;
553
553
}
0 commit comments