Skip to content

Commit

Permalink
Fix typos in mimc7/mimc7.go
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyKing44 committed Feb 2, 2025
1 parent 4c63aa3 commit 68749da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mimc7/mimc7.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func HashGeneric(iv *big.Int, arr []*big.Int, nRounds int) (*big.Int, error) {
}

// MIMC7Hash performs the MIMC7 hash over a *big.Int, using the Finite Field
// over R and the number of rounds setted in the `constants` variable
// over R and the number of rounds set in the `constants` variable
func MIMC7Hash(xInBI, kBI *big.Int) *big.Int { //nolint:golint
xIn := ff.NewElement().SetBigInt(xInBI)
k := ff.NewElement().SetBigInt(kBI)
Expand Down

0 comments on commit 68749da

Please sign in to comment.