Skip to content

Commit

Permalink
Update src/clients/HubPoolClient.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Paul <[email protected]>
  • Loading branch information
nicholaspai and pxrl authored Feb 13, 2025
1 parent 34b6010 commit aab61e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clients/HubPoolClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ export class HubPoolClient extends BaseAbstractClient {
return (
executedLeaf.blockNumber <= block &&
executedLeaf.chainId === chain &&
executedLeaf.l1Tokens.map((l1Token) => l1Token.toLowerCase()).includes(l1Token.toLowerCase())
executedLeaf.l1Tokens.some((token) => token.toLowerCase() === l1Token.toLowerCase()
);

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Test

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Test

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Test

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Test

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Builds

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Lint

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Lint

')' expected.

Check failure on line 786 in src/clients/HubPoolClient.ts

View workflow job for this annotation

GitHub Actions / Lint

')' expected.
}) as ExecutedRootBundle;
}
Expand Down

0 comments on commit aab61e9

Please sign in to comment.