Skip to content

Commit

Permalink
Add 200ms delay between retries
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Dec 10, 2024
1 parent aacbdb3 commit f66b932
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions referee/referee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ while(true) {
break;
} catch (e) {
console.warn("Failed to fetch and parse node utxos: ", e);
await new Promise((resolve) => setTimeout(resolve, 200));
}
}

Expand Down

0 comments on commit f66b932

Please sign in to comment.