From 68749da4fd89433f49d2ebb35c3131990fa6a2f7 Mon Sep 17 00:00:00 2001 From: King Date: Sun, 2 Feb 2025 20:52:50 +0100 Subject: [PATCH] Fix typos in mimc7/mimc7.go --- mimc7/mimc7.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimc7/mimc7.go b/mimc7/mimc7.go index ddf3ec0..5c3327d 100644 --- a/mimc7/mimc7.go +++ b/mimc7/mimc7.go @@ -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)