diff --git a/src/utils/wrappa/postgres/query.ts b/src/utils/wrappa/postgres/query.ts index da6455d..5d39438 100644 --- a/src/utils/wrappa/postgres/query.ts +++ b/src/utils/wrappa/postgres/query.ts @@ -332,7 +332,7 @@ const getLargeTransaction = async (txPK: number, timestamp: number) => { type VolumeType = "deposit" | "withdrawal" | "both"; const getLast24HVolume = async (bridgeName: string, volumeType: VolumeType = "both"): Promise => { - const twentyFourHoursAgo = Math.floor(Date.now() / 1000) - 25 * 60 * 60; + const twentyFourHoursAgo = Math.floor(Date.now() / 1000) - 26 * 60 * 60; let volumeColumn = sql``; switch (volumeType) {