fix lint issues

This commit is contained in:
Cool Developer
2022-03-15 07:29:45 -04:00
parent f0c462811a
commit 1a046cf574
2 changed files with 5 additions and 5 deletions

View File

@@ -3,10 +3,13 @@ package poseidon
import "github.com/iden3/go-iden3-crypto/ffg" import "github.com/iden3/go-iden3-crypto/ffg"
const ( const (
// NROUNDSF
NROUNDSF = 8 NROUNDSF = 8
// NROUNDSP
NROUNDSP = 22 NROUNDSP = 22
CAPLEN = 4 // CAPLEN
mLen = 12 CAPLEN = 4
mLen = 12
) )
var ( var (

View File

@@ -6,9 +6,6 @@ import (
"github.com/iden3/go-iden3-crypto/ffg" "github.com/iden3/go-iden3-crypto/ffg"
) )
const spongeChunkSize = 31
const spongeInputs = 16
func zero() *ffg.Element { func zero() *ffg.Element {
return ffg.NewElement() return ffg.NewElement()
} }