From 579ef32ddd4ec55314d6f2ee427afbd300541e27 Mon Sep 17 00:00:00 2001 From: girazoki <gorka.irazoki@gmail.com> Date: Wed, 21 Feb 2024 00:34:09 +0100 Subject: [PATCH] remove bound on accountID in AssetFeeAsExistentialDepositMultiplier (#3303) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I dont think this bound is required by anything else and it allows now to use this struct with runtimes that have 20 bytes accounts --------- Co-authored-by: Bastian Köcher <git@kchr.de> --- cumulus/parachains/common/src/xcm_config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/cumulus/parachains/common/src/xcm_config.rs b/cumulus/parachains/common/src/xcm_config.rs index 15b090923d5..a9756af7aed 100644 --- a/cumulus/parachains/common/src/xcm_config.rs +++ b/cumulus/parachains/common/src/xcm_config.rs @@ -45,8 +45,6 @@ where <Runtime as pallet_assets::Config<AssetInstance>>::AssetId, <Runtime as pallet_assets::Config<AssetInstance>>::Balance, >, - AccountIdOf<Runtime>: - From<polkadot_primitives::AccountId> + Into<polkadot_primitives::AccountId>, { fn charge_weight_in_fungibles( asset_id: <pallet_assets::Pallet<Runtime, AssetInstance> as Inspect< -- GitLab