Skip to content

Commit

Permalink
small cosmetic to trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnovais committed Sep 11, 2024
1 parent bf18b9c commit 1e8734b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal fun buildSubmitBlobsFunction(
/*snarkHash*/ blobCompressionProof.snarkHash
)

LineaRollup.BlobSubmissionData(
BlobSubmissionData(
/*submissionData*/ supportingSubmissionData,
/*dataEvaluationClaim*/ BigInteger(blobCompressionProof.expectedY),
/*kzgCommitment*/ blobCompressionProof.commitment,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ class L2MessageServiceGasLimitEstimate(
FUNC_ANCHORL1L2MESSAGEHASHES,
listOf<Type<*>>(
DynamicArray(
org.web3j.abi.datatypes.generated.Bytes32::class.java,
messageHashes.map { org.web3j.abi.datatypes.generated.Bytes32(it) }
Bytes32::class.java,
messageHashes.map { Bytes32(it) }
),
Uint256(startingMessageNumber),
Uint256(finalMessageNumber),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import tech.pegasys.teku.infrastructure.async.SafeFuture
* WARNING: Existing mappings should not chane. Otherwise, can break production New One can be added
* though.
*/
public fun batchStatusToDbValue(status: Batch.Status): Int {
fun batchStatusToDbValue(status: Batch.Status): Int {
// using manual mapping to catch errors at compile time instead of runtime
return when (status) {
Batch.Status.Finalized -> 1
Expand Down

0 comments on commit 1e8734b

Please sign in to comment.