Commit f5691302 authored by smartcontracts's avatar smartcontracts Committed by GitHub

Merge pull request #2112 from RishiKumarRay/Remove-unused-variable

Depreciated unused variable from Integration tests
parents 40ffd24d 1e27b346
...@@ -11,7 +11,6 @@ import { ...@@ -11,7 +11,6 @@ import {
DEFAULT_TEST_GAS_L1, DEFAULT_TEST_GAS_L1,
DEFAULT_TEST_GAS_L2, DEFAULT_TEST_GAS_L2,
envConfig, envConfig,
PROXY_SEQUENCER_ENTRYPOINT_ADDRESS,
withdrawalTest, withdrawalTest,
} from './shared/utils' } from './shared/utils'
import { OptimismEnv } from './shared/env' import { OptimismEnv } from './shared/env'
...@@ -31,9 +30,6 @@ describe('Native ETH Integration Tests', async () => { ...@@ -31,9 +30,6 @@ describe('Native ETH Integration Tests', async () => {
const l1BobBalance = await l1Bob.getBalance() const l1BobBalance = await l1Bob.getBalance()
const l2BobBalance = await l2Bob.getBalance() const l2BobBalance = await l2Bob.getBalance()
const sequencerBalance = await _env.ovmEth.balanceOf(
PROXY_SEQUENCER_ENTRYPOINT_ADDRESS
)
const l1BridgeBalance = await _env.l1Wallet.provider.getBalance( const l1BridgeBalance = await _env.l1Wallet.provider.getBalance(
_env.l1Bridge.address _env.l1Bridge.address
) )
...@@ -44,7 +40,6 @@ describe('Native ETH Integration Tests', async () => { ...@@ -44,7 +40,6 @@ describe('Native ETH Integration Tests', async () => {
l1BobBalance, l1BobBalance,
l2BobBalance, l2BobBalance,
l1BridgeBalance, l1BridgeBalance,
sequencerBalance,
} }
} }
......
...@@ -145,8 +145,6 @@ export const gasPriceOracleWallet = new Wallet( ...@@ -145,8 +145,6 @@ export const gasPriceOracleWallet = new Wallet(
) )
// Predeploys // Predeploys
export const PROXY_SEQUENCER_ENTRYPOINT_ADDRESS =
'0x4200000000000000000000000000000000000004'
export const OVM_ETH_ADDRESS = predeploys.OVM_ETH export const OVM_ETH_ADDRESS = predeploys.OVM_ETH
export const L2_CHAINID = procEnv.L2_CHAINID export const L2_CHAINID = procEnv.L2_CHAINID
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment