Skip to content

Commit f87c14a

Browse files
Merge pull request #126 from blockful/fix/voting-power-limit-200-to-100
fix: reduce voting power history query limit from 200 to 100
2 parents 07f65d0 + de34326 commit f87c14a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/logic-system/src/repositories/voting-power.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class VotingPowerRepository {
1313
// Always order by timestamp ascending for chronological processing
1414
orderBy: 'timestamp',
1515
orderDirection: 'asc',
16-
limit: 200,
16+
limit: 100,
1717
where: {
1818
timestamp_gt: timestampGt
1919
}

0 commit comments

Comments
 (0)