From 0fb6e3fbc5a81fa885ce83eb2e23f36d2d772f74 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Tue, 31 Oct 2023 10:34:03 +0000 Subject: [PATCH] fix: use the term local instead of native in local_asset_location_to_collection --- --- a/pallets/foreign-assets/src/lib.rs +++ b/pallets/foreign-assets/src/lib.rs @@ -234,7 +234,7 @@ /// /// If the multilocation doesn't match the patterns listed above, /// or the `` points to a foreign collection, - /// `None` is returned, identifying that the given multilocation doesn't correspond to a native collection. + /// `None` is returned, identifying that the given multilocation doesn't correspond to a local collection. fn local_asset_location_to_collection(asset_location: &MultiLocation) -> Option { let self_location = T::SelfLocation::get(); -- gitstuff