Skip to content

Commit

Permalink
chore: remove 1 second sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
yHSJ committed Dec 3, 2024
1 parent 45dc0a7 commit 74cf9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion referee/referee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ while (true) {
if (counter % 10000 === 0) {
console.log("10k transactions...");
}
await new Promise((resolve) => setTimeout(resolve, 1000));
await new Promise((resolve) => setTimeout(resolve, 1));
}

// while (!done) {
Expand Down

0 comments on commit 74cf9c9

Please sign in to comment.