Skip to content

Commit 3bc9118

Browse files
committed
feat: retry rpc wait for transaction 200 times instead of 100
1 parent ef1645f commit 3bc9118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/provider/rpc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export class RpcProvider implements ProviderInterface {
289289

290290
public async waitForTransaction(txHash: BigNumberish, retryInterval: number = 8000) {
291291
let onchain = false;
292-
let retries = 100;
292+
let retries = 200;
293293

294294
while (!onchain) {
295295
const successStates = ['ACCEPTED_ON_L1', 'ACCEPTED_ON_L2', 'PENDING'];

0 commit comments

Comments
 (0)