From 29cb492c79c9bf33ee67c0260d7b6b49576ebfb5 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Wed, 21 Dec 2022 15:05:55 +0000 Subject: [PATCH] fix: allow InitiateReserveWithdraw on Quartz --- --- a/runtime/common/config/xcm/mod.rs +++ b/runtime/common/config/xcm/mod.rs @@ -186,6 +186,9 @@ TransferReserveAsset { dest: dst, .. } => { allowed |= allowed_locations.contains(dst); } + InitiateReserveWithdraw { reserve: dst, .. } => { + allowed |= allowed_locations.contains(dst); + } _ => {} }); -- gitstuff