From d4abb75c9d4bfee1b925a1af7ef29c4d0ed91620 Mon Sep 17 00:00:00 2001
From: benjamin <ben@elixxir.io>
Date: Tue, 11 Oct 2022 16:44:14 -0700
Subject: [PATCH] fixed skew application

---
 cmix/follow.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cmix/follow.go b/cmix/follow.go
index e03b55160..25a266081 100644
--- a/cmix/follow.go
+++ b/cmix/follow.go
@@ -127,7 +127,8 @@ func (c *client) followNetwork(report ClientErrorReport,
 
 			//update clock skew
 			estimatedSkew := c.skewTracker.Aggregate()
-			netTime.SetOffset(estimatedSkew)
+			// invert the skew because we need to reverse it
+			netTime.SetOffset(-estimatedSkew)
 
 			if err != nil {
 				jww.ERROR.Printf("failed to operate on identities to "+
-- 
GitLab