Skip to content

Commit

Permalink
Fix fetchWithRetries typo (#4642)
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion committed Oct 5, 2022
1 parent 98d302d commit 68f34f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class JsonRpcHttpClient implements IJsonRpcHttpClient {
},
{
retries: opts?.retryAttempts ?? this.opts?.retryAttempts ?? 1,
retryDelay: opts?.retryDelay ?? this.opts?.retryAttempts ?? 0,
retryDelay: opts?.retryDelay ?? this.opts?.retryDelay ?? 0,
shouldRetry: opts?.shouldRetry,
}
);
Expand Down

0 comments on commit 68f34f4

Please sign in to comment.