From 6bedc7aecf1ac45ec2f0a40dfd74f4bedbdc057c Mon Sep 17 00:00:00 2001 From: 0xgnek <0xgnek@gmail.com> Date: Sun, 16 Jul 2023 04:05:43 +0000 Subject: [PATCH] fix total volume --- dexs/polkaswap/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dexs/polkaswap/index.ts b/dexs/polkaswap/index.ts index 684c837128..082e6d18df 100644 --- a/dexs/polkaswap/index.ts +++ b/dexs/polkaswap/index.ts @@ -37,7 +37,7 @@ const fetch = async (timestamp: number) => { .find(dayItem => dayItem.timestamp === dayTimestamp)?.volumeUSD return { - totalVolume: `${totalVolume}`, + // totalVolume: `${totalVolume}`, dailyVolume: dailyVolume ? `${dailyVolume}` : undefined, timestamp: dayTimestamp, };