diff --git a/integration-tests/test/native-eth.spec.ts b/integration-tests/test/native-eth.spec.ts index 80235852d419b..f1f3c95021349 100644 --- a/integration-tests/test/native-eth.spec.ts +++ b/integration-tests/test/native-eth.spec.ts @@ -11,7 +11,6 @@ import { DEFAULT_TEST_GAS_L1, DEFAULT_TEST_GAS_L2, envConfig, - PROXY_SEQUENCER_ENTRYPOINT_ADDRESS, withdrawalTest, } from './shared/utils' import { OptimismEnv } from './shared/env' @@ -31,9 +30,6 @@ describe('Native ETH Integration Tests', async () => { const l1BobBalance = await l1Bob.getBalance() const l2BobBalance = await l2Bob.getBalance() - const sequencerBalance = await _env.ovmEth.balanceOf( - PROXY_SEQUENCER_ENTRYPOINT_ADDRESS - ) const l1BridgeBalance = await _env.l1Wallet.provider.getBalance( _env.l1Bridge.address ) @@ -44,7 +40,6 @@ describe('Native ETH Integration Tests', async () => { l1BobBalance, l2BobBalance, l1BridgeBalance, - sequencerBalance, } } diff --git a/integration-tests/test/shared/utils.ts b/integration-tests/test/shared/utils.ts index dc77f1df70147..4536efc1be443 100644 --- a/integration-tests/test/shared/utils.ts +++ b/integration-tests/test/shared/utils.ts @@ -145,8 +145,6 @@ export const gasPriceOracleWallet = new Wallet( ) // Predeploys -export const PROXY_SEQUENCER_ENTRYPOINT_ADDRESS = - '0x4200000000000000000000000000000000000004' export const OVM_ETH_ADDRESS = predeploys.OVM_ETH export const L2_CHAINID = procEnv.L2_CHAINID