From 156bef3dfbc030f36e8094c2b9c00daaabfb5c6d Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Tue, 30 Aug 2022 11:07:21 -0700 Subject: [PATCH] fixed a comment --- channels/mutateTimestamp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/mutateTimestamp.go b/channels/mutateTimestamp.go index fdf1e7993..32a2e0186 100644 --- a/channels/mutateTimestamp.go +++ b/channels/mutateTimestamp.go @@ -38,7 +38,7 @@ func mutateTimestamp(ts time.Time, msgID channel.MessageID) time.Time { // to get an offset factor. Use a prime close to 1000000 to make sure there // are no patterns in the output and reduce the chance of collision. While // the fields do not align, so there is some bias towards some parts of the - // output field, that bias a too small to matter because log2(10000019) ~23 + // output field, that bias is too small to matter because log2(10000019) ~23 // while the input field is 256. offsetLarge := large.NewIntFromBytes(msgID.Bytes()) offsetLarge.Mod(offsetLarge, tenMsInNsLargeInt) -- GitLab