From 4ccd45a4fcc983e08ae68b798c825b56946c41b0 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Tue, 24 Oct 2023 13:13:42 +0000 Subject: [PATCH] fix: CurrencyIdConvert --- --- a/pallets/foreign-assets/src/lib.rs +++ b/pallets/foreign-assets/src/lib.rs @@ -543,7 +543,7 @@ { fn convert(collection_id: CollectionId) -> Option { if collection_id == NATIVE_FUNGIBLE_COLLECTION_ID { - Some(Here.into()) + Some(T::SelfLocation::get()) } else { >::collection_to_foreign_reserve_location(collection_id).or_else(|| { T::SelfLocation::get() -- gitstuff