-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Remove unused variable from integration tests #2110
Copy link
Copy link
Closed
Labels
A-integrationArea: integration testsArea: integration testsC-choreCategory: Code, docs or tooling maintenanceCategory: Code, docs or tooling maintenance
Description
Simple task, just need to remove this unused variable from the integration tests:
optimism/integration-tests/test/shared/utils.ts
Lines 148 to 149 in 137f776
| export const PROXY_SEQUENCER_ENTRYPOINT_ADDRESS = | |
| '0x4200000000000000000000000000000000000004' |
This variable is used within the native-eth.spec.ts test file to get a sequencerBalance, but the sequencerBalance variable is never actually used after that:
optimism/integration-tests/test/native-eth.spec.ts
Lines 34 to 36 in 137f776
| const sequencerBalance = await _env.ovmEth.balanceOf( | |
| PROXY_SEQUENCER_ENTRYPOINT_ADDRESS | |
| ) |
So we can just remove PROXY_SEQUENCER_ENTRYPOINT_ADDRESS and sequencerBalance.
Please remember to read the Contributing Guidelines if this is your first time contributing to Optimism! It contains useful information that will make the contributing process as easy as possible.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-integrationArea: integration testsArea: integration testsC-choreCategory: Code, docs or tooling maintenanceCategory: Code, docs or tooling maintenance