Skip to content

Commit

Permalink
disable total volume
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Jul 31, 2023
1 parent 0ee9883 commit 95eeae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dexs/polynomial-trade/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const startTimeStamp = 1679875200
const fetch = async (timestamp: number) => {
const startDayTimestamp = getTimestampAtStartOfDayUTC(timestamp)
return {
dailyVolume: await getDailyVolume(startDayTimestamp),
totalVolume: await getTotalVolume(timestamp),
dailyVolume: await getDailyVolume(startDayTimestamp),
// totalVolume: await getTotalVolume(timestamp),
timestamp: startDayTimestamp,
};
};
Expand Down

0 comments on commit 95eeae5

Please sign in to comment.