Skip to content

Commit

Permalink
Updated arbrollup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yahgwai committed Oct 25, 2023
1 parent a3111c4 commit 90f2262
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/contract/arbRollup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,6 @@ const setup = async () => {
)) as Bridge__factory
const ethBridge = await ethBridgeFac.deploy()

const ethSequencerInboxFac = (await ethers.getContractFactory(
'SequencerInbox'
)) as SequencerInbox__factory
const ethSequencerInbox = await ethSequencerInboxFac.deploy(117964)

const ethInboxFac = (await ethers.getContractFactory(
'Inbox'
)) as Inbox__factory
Expand All @@ -210,8 +205,6 @@ const setup = async () => {
)) as ERC20Bridge__factory
const erc20Bridge = await erc20BridgeFac.deploy()

const erc20SequencerInbox = ethSequencerInbox

const erc20InboxFac = (await ethers.getContractFactory(
'ERC20Inbox'
)) as ERC20Inbox__factory
Expand All @@ -233,14 +226,12 @@ const setup = async () => {
const bridgeCreator = await bridgeCreatorFac.deploy(
{
bridge: ethBridge.address,
sequencerInbox: ethSequencerInbox.address,
inbox: ethInbox.address,
rollupEventInbox: ethRollupEventInbox.address,
outbox: ethOutbox.address,
},
{
bridge: erc20Bridge.address,
sequencerInbox: erc20SequencerInbox.address,
inbox: erc20Inbox.address,
rollupEventInbox: erc20RollupEventInbox.address,
outbox: erc20Outbox.address,
Expand Down

0 comments on commit 90f2262

Please sign in to comment.