Skip to content

Commit

Permalink
fix: slot blocks query
Browse files Browse the repository at this point in the history
  • Loading branch information
brancoder committed Apr 25, 2024
1 parent d6c2ac6 commit 278e7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/services/nova/influx/influxQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const BLOCK_STATS_QUERY = `
sum("candidacy_announcement_count") AS "candidacy",
sum("validation_count") AS "noPayload"
FROM "iota_block_activity"
WHERE time >= $from and time <= $to
WHERE time > $from and time <= $to
`;

export const TOKENS_HELD_BY_OUTPUTS_DAILY_QUERY = {
Expand Down

0 comments on commit 278e7af

Please sign in to comment.