From 884c5806a41b978f0ab1ffe5e4596951091a0df1 Mon Sep 17 00:00:00 2001 From: Vladimir Stepanenko Date: Fri, 27 Sep 2024 23:56:25 +0700 Subject: [PATCH] Remove feature flags for updated price tools (#1219) --- runtime/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index b3f8d35dcf..32817b6dba 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -2039,10 +2039,7 @@ impl kensetsu::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Randomness = pallet_babe::ParentBlockRandomness; type AssetInfoProvider = Assets; - #[cfg(feature = "wip")] type PriceTools = price_tools::FastPriceTools; - #[cfg(not(feature = "wip"))] - type PriceTools = price_tools::Pallet; type LiquidityProxy = LiquidityProxy; type Oracle = OracleProxy; type TradingPairSourceManager = trading_pair::Pallet;