Disable asset transfers on Polkadot (#4475)

This commit is contained in:
Keith Yeung
2021-12-06 13:30:29 -08:00
committed by GitHub
parent 39310088b0
commit 8e9cf43f5e
+2 -2
View File
@@ -1418,8 +1418,8 @@ impl pallet_xcm::Config for Runtime {
// ...but they must match our filter, which rejects all.
type XcmExecuteFilter = Nothing;
type XcmExecutor = XcmExecutor<XcmConfig>;
type XcmTeleportFilter = Everything;
type XcmReserveTransferFilter = Everything;
type XcmTeleportFilter = Nothing;
type XcmReserveTransferFilter = Nothing;
type Weigher = FixedWeightBounds<BaseXcmWeight, Call, MaxInstructions>;
type LocationInverter = LocationInverter<Ancestry>;
type Origin = Origin;