Skip to content

Commit

Permalink
fix: extend retries time
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriyaga committed May 14, 2024
1 parent e20bbeb commit b8bcb8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hardhat-zksync-verify/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function nextAttemptDelay(currentAttempt: number, baseDelay: number, base
export async function executeVeificationWithRetry(
requestId: number,
verifyURL: string,
maxRetries = 10,
maxRetries = 11,
baseRetries = 5,
baseDelayInMs = 2000,
): Promise<VerificationStatusResponse | undefined> {
Expand Down

0 comments on commit b8bcb8e

Please sign in to comment.