@@ -185,11 +185,6 @@ const setup = async () => {
185185 ) ) as Bridge__factory
186186 const ethBridge = await ethBridgeFac . deploy ( )
187187
188- const ethSequencerInboxFac = ( await ethers . getContractFactory (
189- 'SequencerInbox'
190- ) ) as SequencerInbox__factory
191- const ethSequencerInbox = await ethSequencerInboxFac . deploy ( 117964 )
192-
193188 const ethInboxFac = ( await ethers . getContractFactory (
194189 'Inbox'
195190 ) ) as Inbox__factory
@@ -210,8 +205,6 @@ const setup = async () => {
210205 ) ) as ERC20Bridge__factory
211206 const erc20Bridge = await erc20BridgeFac . deploy ( )
212207
213- const erc20SequencerInbox = ethSequencerInbox
214-
215208 const erc20InboxFac = ( await ethers . getContractFactory (
216209 'ERC20Inbox'
217210 ) ) as ERC20Inbox__factory
@@ -233,14 +226,12 @@ const setup = async () => {
233226 const bridgeCreator = await bridgeCreatorFac . deploy (
234227 {
235228 bridge : ethBridge . address ,
236- sequencerInbox : ethSequencerInbox . address ,
237229 inbox : ethInbox . address ,
238230 rollupEventInbox : ethRollupEventInbox . address ,
239231 outbox : ethOutbox . address ,
240232 } ,
241233 {
242234 bridge : erc20Bridge . address ,
243- sequencerInbox : erc20SequencerInbox . address ,
244235 inbox : erc20Inbox . address ,
245236 rollupEventInbox : erc20RollupEventInbox . address ,
246237 outbox : erc20Outbox . address ,
0 commit comments