Skip to content

Commit

Permalink
only check token gates once a day
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasey committed Feb 24, 2025
1 parent 81e7196 commit e179402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cron/src/cron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ cron.schedule('*/30 * * * *', voteTask);
cron.schedule('*/15 * * * *', proposalTask);

// Verify token gates and remove users who no longer meet the conditions
cron.schedule('*/30 * * * *', verifyTokenGateMembershipsTask);
cron.schedule('0 0 * * *', verifyTokenGateMembershipsTask);

// Refresh applications with pending payments
cron.schedule('*/30 * * * *', refreshBountyApplications);
Expand Down

0 comments on commit e179402

Please sign in to comment.