From 762c25818fda9b34cc33c753d74039d9d703bdaf Mon Sep 17 00:00:00 2001
From: benjamin <ben@elixxir.io>
Date: Tue, 11 Oct 2022 16:46:01 -0700
Subject: [PATCH] changed the default clock skew clamp to 50ms

---
 cmix/params.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmix/params.go b/cmix/params.go
index 4016f64ae..d933dbc9d 100644
--- a/cmix/params.go
+++ b/cmix/params.go
@@ -106,7 +106,7 @@ func GetDefaultParams() Params {
 		RealtimeOnly:              false,
 		ReplayRequests:            true,
 		MaxParallelIdentityTracks: 20,
-		ClockSkewClamp:            150 * time.Millisecond,
+		ClockSkewClamp:            50 * time.Millisecond,
 	}
 	n.Rounds = rounds.GetDefaultParams()
 	n.Pickup = pickup.GetDefaultParams()
-- 
GitLab