From 046819f19c3a21f983c1f8acd2a3d4b408d97cfd Mon Sep 17 00:00:00 2001 From: Dmytro Sukhyi Date: Sun, 8 May 2022 14:48:31 +0300 Subject: [PATCH] update default circuits MT level to 32 and value array size to 64 --- circuits.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circuits.go b/circuits.go index 153fff2..fa2600d 100644 --- a/circuits.go +++ b/circuits.go @@ -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{}