Skip to content

Commit 4f0c00b

Browse files
committed
fix: waitForTransaction
1 parent 1476461 commit 4f0c00b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/provider/sequencer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class SequencerProvider implements ProviderInterface {
330330
// eslint-disable-next-line no-await-in-loop
331331
const res = await this.getTransactionStatus(txHash);
332332

333-
const successStates = ['ACCEPTED_ON_L1', 'ACCEPTED_ON_L2', 'PENDING'];
333+
const successStates = ['ACCEPTED_ON_L1', 'ACCEPTED_ON_L2'];
334334
const errorStates = ['REJECTED', 'NOT_RECEIVED'];
335335

336336
if (successStates.includes(res.tx_status)) {

0 commit comments

Comments
 (0)