Skip to content
Closed
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: 5 additions & 1 deletion yarn-project/end-to-end/src/e2e_offchain_payment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ describe('e2e_offchain_payment', () => {
jest.setTimeout(TIMEOUT);

beforeAll(async () => {
({ teardown, wallet, accounts, aztecNode, aztecNodeAdmin, cheatCodes } = await setup(2));
({ teardown, wallet, accounts, aztecNode, aztecNodeAdmin, cheatCodes } = await setup(2, {
// Use 32 slots/epoch so Anvil's finalized block lags far behind latest,
// preventing the reorg test from hitting "Cannot rollback to block N as it is before finalized M".
anvilSlotsInAnEpoch: 32,
}));
});

afterAll(() => teardown());
Expand Down
Loading