Skip to content

Commit

Permalink
update default circuits MT level to 32 and value array size to 64
Browse files Browse the repository at this point in the history
  • Loading branch information
demonsh committed May 8, 2022
1 parent 6eb4c3d commit 046819f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions circuits.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const (
var ErrorCircuitIDNotFound = errors.New("circuit id not supported")

const (
defaultMTLevels = 40 // max MT levels, default value for identity circuits
defaultValueArraySize = 16 // max value array size, default value for identity circuits
defaultMTLevels = 32 // max MT levels, default value for identity circuits
defaultValueArraySize = 64 // max value array size, default value for identity circuits
)

var circuitsRegistry = map[CircuitID]Data{}
Expand Down

0 comments on commit 046819f

Please sign in to comment.