Skip to content

Commit

Permalink
fix: cutoff (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpsanant authored and seanmcgary committed Dec 12, 2024
2 parents 035fad7 + 285dcb6 commit da8f00b
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 da8f00b

Please sign in to comment.