From 3525f0b8988aac2cbcbe78fbacadc3a2ef49fa55 Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Tue, 11 Oct 2022 16:04:39 -0700 Subject: [PATCH] fixed usage of clamp --- cmix/clockSkew/timeTracker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmix/clockSkew/timeTracker.go b/cmix/clockSkew/timeTracker.go index 9e4c54fff..a1e089c79 100644 --- a/cmix/clockSkew/timeTracker.go +++ b/cmix/clockSkew/timeTracker.go @@ -75,6 +75,7 @@ func New(clamp time.Duration) Tracker { gatewayClockDelays: new(sync.Map), offsets: make([]*time.Duration, maxHistogramSize), currentIndex: 0, + clamp: clamp, } return t } -- GitLab