Disable asset transfers on Statemint (against Statemint release branch v6.0.1) (#837)

* Disable asset transfers on Statemint

* Fixup
This commit is contained in:
Keith Yeung
2021-12-09 15:51:12 -08:00
committed by GitHub
parent 0ccb8638ce
commit 4292ce5b87
+2 -2
View File
@@ -596,8 +596,8 @@ impl pallet_xcm::Config for Runtime {
// ... but disallow generic XCM execution. As a result only teleports and reserve transfers are allowed.
type XcmExecuteFilter = Nothing;
type XcmExecutor = XcmExecutor<XcmConfig>;
type XcmTeleportFilter = Everything;
type XcmReserveTransferFilter = Everything;
type XcmTeleportFilter = Nothing;
type XcmReserveTransferFilter = Nothing;
type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
type LocationInverter = LocationInverter<Ancestry>;
type Origin = Origin;