Skip to content

Commit

Permalink
chore: Update eigenda dep to v0.8.1 && update tests for 16MB blobs - …
Browse files Browse the repository at this point in the history
…fix lint
  • Loading branch information
epociask committed Aug 22, 2024
1 parent a79d589 commit a974250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify/verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (v *Verifier) VerifyCommitment(expectedCommit *common.G1Commitment, blob []
if !actualCommit.X.Equal(expectedX) || !actualCommit.Y.Equal(expectedY) {
errMsg += fmt.Sprintf("field elements do not match, x actual commit: %x, x expected commit: %x, ", actualCommit.X.Marshal(), expectedX.Marshal())
errMsg += fmt.Sprintf("y actual commit: %x, y expected commit: %x", actualCommit.Y.Marshal(), expectedY.Marshal())
return fmt.Errorf(errMsg)
return fmt.Errorf("%s", errMsg)
}

return nil
Expand Down

0 comments on commit a974250

Please sign in to comment.