@@ -470,7 +470,7 @@ contract RollupTest is RollupBase {
470470 interim.feeAmount = interim.manaUsed * interim.minFee + interim.portalBalance;
471471 header.accumulatedFees = interim.feeAmount;
472472
473- // Streaming Inbox (AZIP-22 Fast Inbox) : nothing is seeded here, so reference the genesis bucket (hash 0).
473+ // Streaming Inbox: nothing is seeded here, so reference the genesis bucket (hash 0).
474474 header.inboxRollingHash = bytes32 (0 );
475475
476476 // Assert that balance have NOT been increased by proposing the checkpoint
@@ -937,7 +937,7 @@ contract RollupTest is RollupBase {
937937 }
938938
939939 // The epoch-proof anchoring pins the rolling-hash chain start to the record written at propose for checkpoint
940- // start - 1 (AZIP-22 Fast Inbox) , mirroring previousArchive. A wrong previousInboxRollingHash must be rejected.
940+ // start - 1, mirroring previousArchive. A wrong previousInboxRollingHash must be rejected.
941941 function testGetEpochProofPublicInputsRejectsWrongPreviousInboxRollingHash () public setUpFor ("empty_checkpoint_1 " ) {
942942 _proposeCheckpoint ("empty_checkpoint_1 " , 1 );
943943
@@ -965,7 +965,7 @@ contract RollupTest is RollupBase {
965965 }
966966
967967 // The end of the rolling-hash chain segment is pinned to the hash recorded at propose for the epoch's last
968- // checkpoint (AZIP-22 Fast Inbox) , mirroring endArchive. A wrong endInboxRollingHash must be rejected here rather
968+ // checkpoint, mirroring endArchive. A wrong endInboxRollingHash must be rejected here rather
969969 // than surfacing as a generic proof-verification failure.
970970 function testGetEpochProofPublicInputsRejectsWrongEndInboxRollingHash () public setUpFor ("empty_checkpoint_1 " ) {
971971 _proposeCheckpoint ("empty_checkpoint_1 " , 1 );
0 commit comments