Skip to content

Commit

Permalink
Change default limit for getProposalVotes
Browse files Browse the repository at this point in the history
  • Loading branch information
bonustrack authored Nov 29, 2022
1 parent ba2aa5b commit 4541f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import cloneDeep from 'lodash/cloneDeep';

export async function getProposalVotes(
proposalId: string,
{ first, voter, skip }: any = { first: 30000, voter: '', skip: 0 }
{ first, voter, skip }: any = { first: 1000, voter: '', skip: 0 }
): Promise<Vote[] | []> {
try {
console.time('getProposalVotes');
Expand Down

0 comments on commit 4541f9b

Please sign in to comment.