Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions yarn-project/archiver/src/archiver/archiver.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Blob } from '@aztec/blob-lib';
import type { BlobSinkClientInterface } from '@aztec/blob-sink/client';
import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants';
import { DefaultL1ContractsConfig, type ViemPublicClient } from '@aztec/ethereum';
import { DefaultL1ContractsConfig, RollupContract, type ViemPublicClient } from '@aztec/ethereum';
import { EthAddress } from '@aztec/foundation/eth-address';
import { Fr } from '@aztec/foundation/fields';
import { type Logger, createLogger } from '@aztec/foundation/log';
Expand Down Expand Up @@ -147,7 +147,9 @@ describe('Archiver', () => {
address: rollupAddress.toString(),
};

(archiver as any).rollup = mockRollup;
const wrapper = new RollupContract(publicClient, rollupAddress.toString());
(wrapper as any).rollup = mockRollup;
(archiver as any).rollup = wrapper;

mockInboxRead = mock<MockInboxContractRead>();
mockInboxEvents = mock<MockInboxContractEvents>();
Expand Down
Loading