Skip to content

Commit

Permalink
Merge branch '4844-only' into 4844-with-opt
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth committed Jan 17, 2024
2 parents 4872398 + 49750a0 commit 9529776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/contract/sequencerInbox.spec.4844.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { SequencerInbox } from '../../build/types/src/bridge/SequencerInbox'
import { execSync } from 'child_process'
import { wait } from '@arbitrum/sdk/dist/lib/utils/lib'
import { InboxMessageDeliveredEvent } from '../../build/types/src/bridge/AbsInbox'
import { SequencerBatchDeliveredEvent } from '../../build/types/src/bridge/AbsBridge'
import { SequencerBatchDeliveredEvent } from '../../build/types/src/bridge/ISequencerInbox'

const mineBlocks = async (
wallet: Wallet,
Expand Down Expand Up @@ -455,10 +455,10 @@ describe('SequencerInbox', async () => {
(b: any) =>
b.address.toLowerCase() === bridge.address.toLowerCase() &&
b.topics[0] ===
bridge.interface.getEventTopic('SequencerBatchDelivered')
sequencerInbox.interface.getEventTopic('SequencerBatchDelivered')
)
.map(
(l: any) => bridge.interface.parseLog(l).args
(l: any) => sequencerInbox.interface.parseLog(l).args
)[0] as SequencerBatchDeliveredEvent['args']
if (!batchDeliveredEvent) throw new Error('missing batch event')

Expand Down

0 comments on commit 9529776

Please sign in to comment.