Skip to content

Commit

Permalink
chore: Fix bad merge in integration l1 publisher (#10272)
Browse files Browse the repository at this point in the history
Fixes build after a bad merge from #10163.
  • Loading branch information
spalladino authored Nov 28, 2024
1 parent c9a4d88 commit b5a6aa4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ describe('L1Publisher integration', () => {
prevHeader = fork.getInitialHeader();
await fork.close();

baseFee = new GasFees(0, await rollup.read.getManaBaseFee([true]));
const ts = (await publicClient.getBlock()).timestamp;
baseFee = new GasFees(0, await rollup.read.getManaBaseFeeAt([ts, true]));

// We jump to the next epoch such that the committee can be setup.
const timeToJump = await rollup.read.EPOCH_DURATION();
Expand Down

0 comments on commit b5a6aa4

Please sign in to comment.