Skip to content

Commit

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

0 comments on commit 1f8b4bb

Please sign in to comment.