diff --git a/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts b/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts index 75a4ba17a075a..0fdb66e807b32 100644 --- a/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts +++ b/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts @@ -371,18 +371,7 @@ const calcV2PoolApr = ({ } } -const cakePriceCache = { - value: new BigNumber(0), - timestamp: 0, -} -const getCakePrice = async () => { - const now = Date.now() - // cache for 10 minutes - if (now - cakePriceCache.timestamp < 1000 * 60 * 10) { - return cakePriceCache.value - } - return new BigNumber(await getCakePriceFromOracle()) -} +const getCakePrice = async () => new BigNumber(await getCakePriceFromOracle()) const getV2PoolsCakeAprByChainId = async ( pools: Array, chainId: number,