Skip to content

Commit

Permalink
fix(build): CI fixes from previous merges (#2579)
Browse files Browse the repository at this point in the history
This PR fixes some CI issues that crept in from previous merges.

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
PhilWindle authored Sep 28, 2023
1 parent 08acf90 commit a9e5d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ describe('sequencer', () => {

l1ToL2MessageSource = mock<L1ToL2MessageSource>({
getPendingL1ToL2Messages: () => Promise.resolve(Array(NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP).fill(Fr.ZERO)),
getBlockNumber: () => Promise.resolve(lastBlockNumber),
});

sequencer = new TestSubject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
loadTree,
newTree,
} from '@aztec/merkle-tree';
import { L2Block, MerkleTreeId, SiblingPath, merkleTreeIds } from '@aztec/types';
import { L2Block, MerkleTreeId, SiblingPath } from '@aztec/types';

import { default as levelup } from 'levelup';

Expand Down

0 comments on commit a9e5d05

Please sign in to comment.