Skip to content

Commit

Permalink
count only one side
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed May 15, 2024
1 parent 37cef51 commit 00b8026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dexs/mangrove/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 00b8026

Please sign in to comment.