Skip to content

Commit

Permalink
increase maxAttempts to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
panleone committed May 8, 2024
1 parent 4fd267d commit 1b536fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class ExplorerNetwork extends Network {
}
async sendAndWaitForAnswer(method, params) {
let attempt = 1;
const maxAttempts = 5;
const maxAttempts = 10;
while (attempt <= maxAttempts) {
const id = this.send(method, params);
for (let i = 0; i < 100; i++) {
Expand Down

0 comments on commit 1b536fc

Please sign in to comment.