Skip to content

Commit

Permalink
Load top 50
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Apr 13, 2024
1 parent e3a21a2 commit 8aeb822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class JobsObserver {
* Checks gateway for pending jobs and returns the rounds of those jobs as a list
*/
public async check(): Promise<number[]> {
const query = { jobs_desc: { offset: null, limit: 3 } };
const query = { jobs_desc: { offset: null, limit: 50 } };
const { jobs }: JobsResponse = await this.noisClient.queryContractSmart(this.gateway, query);
if (jobs.length === 0) return []; // Nothing to do for us

Expand Down

0 comments on commit 8aeb822

Please sign in to comment.