@@ -38,6 +38,7 @@ import {stdStorage, StdStorage} from "forge-std/StdStorage.sol";
3838import {RollupBuilder} from "./builder/RollupBuilder.sol " ;
3939import {Ownable} from "@oz/access/Ownable.sol " ;
4040import {AttestationLib, CommitteeAttestations} from "@aztec/core/libraries/rollup/AttestationLib.sol " ;
41+ import {AttestationLibHelper} from "@test/helper_libraries/AttestationLibHelper.sol " ;
4142// solhint-disable comprehensive-interface
4243
4344/**
@@ -241,7 +242,7 @@ contract RollupTest is RollupBase {
241242 });
242243 bytes32 realBlobHash = this .getBlobHashes (data.blobCommitments)[0 ];
243244 vm.expectRevert (abi.encodeWithSelector (Errors.Rollup__InvalidBlobHash.selector , blobHashes[0 ], realBlobHash));
244- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, data.blobCommitments);
245+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, data.blobCommitments);
245246 }
246247
247248 function testExtraBlobs () public setUpFor ("mixed_block_1 " ) {
@@ -323,7 +324,7 @@ contract RollupTest is RollupBase {
323324 stateReference: EMPTY_STATE_REFERENCE,
324325 oracleInput: OracleInput (0 )
325326 });
326- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, data.blobCommitments);
327+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, data.blobCommitments);
327328 }
328329
329330 function testInvalidL2Fee () public setUpFor ("mixed_block_1 " ) {
@@ -349,7 +350,7 @@ contract RollupTest is RollupBase {
349350 stateReference: EMPTY_STATE_REFERENCE,
350351 oracleInput: OracleInput (0 )
351352 });
352- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, data.blobCommitments);
353+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, data.blobCommitments);
353354 }
354355
355356 function testProvingFeeUpdates () public setUpFor ("mixed_block_1 " ) {
@@ -455,7 +456,7 @@ contract RollupTest is RollupBase {
455456 stateReference: EMPTY_STATE_REFERENCE,
456457 oracleInput: OracleInput (0 )
457458 });
458- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, data.blobCommitments);
459+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, data.blobCommitments);
459460 assertEq (testERC20.balanceOf (header.coinbase), 0 , "invalid coinbase balance " );
460461 }
461462
@@ -674,7 +675,7 @@ contract RollupTest is RollupBase {
674675 stateReference: EMPTY_STATE_REFERENCE,
675676 oracleInput: OracleInput (0 )
676677 });
677- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, new bytes (144 ));
678+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, new bytes (144 ));
678679 }
679680
680681 function testRevertInvalidCoinbase () public setUpFor ("empty_block_1 " ) {
@@ -697,7 +698,7 @@ contract RollupTest is RollupBase {
697698 stateReference: EMPTY_STATE_REFERENCE,
698699 oracleInput: OracleInput (0 )
699700 });
700- rollup.propose (args, AttestationLib .packAttestations (attestations), signers, new bytes (144 ));
701+ rollup.propose (args, AttestationLibHelper .packAttestations (attestations), signers, new bytes (144 ));
701702 }
702703
703704 function testSubmitProofNonExistentBlock () public setUpFor ("empty_block_1 " ) {
0 commit comments