From 48a70ebe23de0f5ed83d5c098a988c14d4f953ca Mon Sep 17 00:00:00 2001 From: Liam Aharon <liam.aharon@hotmail.com> Date: Wed, 10 Apr 2024 10:01:04 +0400 Subject: [PATCH] remove unnecesary bound --- substrate/frame/asset-rewards/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/substrate/frame/asset-rewards/src/lib.rs b/substrate/frame/asset-rewards/src/lib.rs index 9f1c9083dfc..0e2ebea072e 100644 --- a/substrate/frame/asset-rewards/src/lib.rs +++ b/substrate/frame/asset-rewards/src/lib.rs @@ -81,7 +81,7 @@ pub use pallet::*; use frame_support::{ traits::{ - fungibles::{Balanced, Inspect, Mutate}, + fungibles::{Inspect, Mutate}, tokens::Balance, }, PalletId, @@ -182,8 +182,7 @@ pub mod pallet { /// Registry of assets that can be configured to either stake for rewards, or be offered as /// rewards for staking. type Assets: Inspect<Self::AccountId, AssetId = Self::AssetId, Balance = Self::Balance> - + Mutate<Self::AccountId> - + Balanced<Self::AccountId>; + + Mutate<Self::AccountId>; /// Weight information for extrinsics in this pallet. // type WeightInfo: WeightInfo; -- GitLab