From f836433575bd0445dacb731474bd5911ab0465ac Mon Sep 17 00:00:00 2001 From: PraetorP Date: Fri, 02 Jun 2023 09:39:47 +0000 Subject: [PATCH] refactor(tests): remove Currency trait --- --- a/runtime/tests/src/lib.rs +++ b/runtime/tests/src/lib.rs @@ -19,7 +19,7 @@ use sp_core::{H160, H256, U256}; use frame_support::{ parameter_types, - traits::{Everything, ConstU32, ConstU64, Currency}, + traits::{Everything, ConstU32, ConstU64, fungible::Inspect}, weights::IdentityFee, pallet_prelude::Weight, }; @@ -282,7 +282,7 @@ impl pallet_balances_adapter::Config for Test { type Inspect = Balances; type Mutate = Balances; - type CurrencyBalance = >::Balance; + type CurrencyBalance = >::Balance; type Decimals = Decimals; type Name = Name; type Symbol = Symbol; -- gitstuff