Skip to content

Commit c20144f

Browse files
authored
fix: CI was frequently failing with 429s, so we increase the max number of retries (#96)
1 parent ded9560 commit c20144f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/checks/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { PublicClient } from 'viem';
33

44
async function retryOnRateLimit<T>(
55
fn: () => Promise<T>,
6-
maxRetries = 5,
6+
maxRetries = 8,
77
initialDelay = 1000,
88
): Promise<T> {
99
let retries = 0;

0 commit comments

Comments
 (0)