Skip to content

Commit

Permalink
fix: cutoff (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpsanant authored Dec 12, 2024
2 parents 23a0ba9 + 0708644 commit a874ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rewards/operatorDirectedRewards.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const operatorDirectedRewardsQuery = `
TO_CHAR(b.block_time, 'YYYY-MM-DD') AS block_date
FROM operator_directed_reward_submissions AS odrs
JOIN blocks AS b ON(b.number = odrs.block_number)
WHERE b.block_time <= TIMESTAMP '{{.cutoffDate}}'
WHERE b.block_time < TIMESTAMP '{{.cutoffDate}}'
)
select
avs,
Expand Down

0 comments on commit a874ae9

Please sign in to comment.