From 7aa1727bbd7a007b72ba09b4ce1cf7049938594f Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Wed, 15 Dec 2021 17:05:16 -0800 Subject: [PATCH] Disable asset transfers on Statemint (against master branch) (#838) * Disable asset transfers on Statemint * Fixup --- cumulus/polkadot-parachains/statemint/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cumulus/polkadot-parachains/statemint/src/lib.rs b/cumulus/polkadot-parachains/statemint/src/lib.rs index b6575f6d63..53664c7fa9 100644 --- a/cumulus/polkadot-parachains/statemint/src/lib.rs +++ b/cumulus/polkadot-parachains/statemint/src/lib.rs @@ -594,8 +594,8 @@ impl pallet_xcm::Config for Runtime { type ExecuteXcmOrigin = EnsureXcmOrigin; type XcmExecuteFilter = Nothing; type XcmExecutor = XcmExecutor; - type XcmTeleportFilter = Everything; - type XcmReserveTransferFilter = Everything; + type XcmTeleportFilter = Nothing; + type XcmReserveTransferFilter = Nothing; type Weigher = FixedWeightBounds; type LocationInverter = LocationInverter; type Origin = Origin;