Skip to content

Commit

Permalink
fix: Add salt to blob header conversion util (#1177)
Browse files Browse the repository at this point in the history
Signed-off-by: litt3 <[email protected]>
  • Loading branch information
litt3 authored Jan 28, 2025
1 parent 91f7e6e commit b24dcfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/clients/v2/verification/conversion_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ func blobHeaderProtoToBinding(inputHeader *commonv2.BlobHeader) (*contractEigenD
QuorumNumbers: quorumNumbers,
Commitment: *convertedBlobCommitment,
PaymentHeaderHash: paymentHeaderHash,
Salt: inputHeader.GetSalt(),
}, nil
}

Expand All @@ -176,7 +177,7 @@ func blobCommitmentProtoToBinding(inputCommitment *common.BlobCommitment) (*cont
Commitment: *convertedCommitment,
LengthCommitment: *convertedLengthCommitment,
LengthProof: *convertedLengthProof,
Length: inputCommitment.GetLength(),
Length: inputCommitment.GetLength(),
}, nil
}

Expand Down

0 comments on commit b24dcfa

Please sign in to comment.