Skip to content

Commit

Permalink
Improve doc comment for cleanupOldJobs
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Apr 14, 2024
1 parent fb2b1c4 commit 4586dc9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ function getNextSignData(): SignerData {
return out;
}

// If this is set to false, the bot will only observe drand and check for each
// round **once** if it was incentivised. Everything that is markt as incentivised
// too late or is unprocessed for whatever reason will not be submitted.
/**
* If this is set to false, the bot will only watch the drand chain and check for
* each round **once** if it is incentivised. Everything that is marked as incentivised
* too late or is still unprocessed for whatever reason will not be submitted.
*
* It's not recommended to change this value for anything else than development.
*/
const cleanupOldJobs = true;

if (import.meta.main) {
Expand Down

0 comments on commit 4586dc9

Please sign in to comment.