From 00b80260112b14fed3bf7a76d73b95c8d4aaca96 Mon Sep 17 00:00:00 2001 From: 0xgnek <0xgnek@gmail.com> Date: Wed, 15 May 2024 14:30:01 +0000 Subject: [PATCH] count only one side --- dexs/mangrove/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dexs/mangrove/index.ts b/dexs/mangrove/index.ts index 621eb654ca..bc4831f4bb 100644 --- a/dexs/mangrove/index.ts +++ b/dexs/mangrove/index.ts @@ -37,7 +37,7 @@ const adapter: Adapter = { for (const market of markets) { const { base, quote, totalValueInBase, totalValueInQuote } = market; dailyVolume.add(base, totalValueInBase); - dailyVolume.add(quote, totalValueInQuote); + // dailyVolume.add(quote, totalValueInQuote); } return { dailyVolume };