From d0e4fab334d88f80a5cb9eba9846352ef80cb86c Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Sun, 23 Oct 2022 12:02:44 -0700 Subject: [PATCH] fixed prints and updated deps --- cmix/sendCmix.go | 2 +- go.mod | 2 +- go.sum | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cmix/sendCmix.go b/cmix/sendCmix.go index 2f1164419..beff00fc6 100644 --- a/cmix/sendCmix.go +++ b/cmix/sendCmix.go @@ -218,7 +218,7 @@ func sendCmixHelper(sender gateway.Sender, assembler messageAssembler, recipient } jww.INFO.Printf("[Send-%s] Best round found, took %s: %d", - cmixParams.DebugTag, time.Since(startSearch), bestRound.ID) + cmixParams.DebugTag, netTime.Since(startSearch), bestRound.ID) // Determine whether the selected round contains any // nodes that are blacklisted by the CMIXParams object diff --git a/go.mod b/go.mod index ae579f620..64952aa1e 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/spf13/viper v1.12.0 github.com/stretchr/testify v1.8.0 gitlab.com/elixxir/bloomfilter v0.0.0-20211222005329-7d931ceead6f - gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293 + gitlab.com/elixxir/comms v0.0.4-0.20221023190124-3441c3fdc3de gitlab.com/elixxir/crypto v0.0.7-0.20221021211329-2d8ef59a4df1 gitlab.com/elixxir/ekv v0.2.1 gitlab.com/elixxir/primitives v0.0.3-0.20221017172918-6176818d1aba diff --git a/go.sum b/go.sum index 9aef34e71..d0d57a09e 100644 --- a/go.sum +++ b/go.sum @@ -637,6 +637,8 @@ gitlab.com/elixxir/comms v0.0.4-0.20221021234520-a4f94f752e3e h1:Go3Ec+LOm8t6j8w gitlab.com/elixxir/comms v0.0.4-0.20221021234520-a4f94f752e3e/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg= gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293 h1:QIiZYjdtwjBCYaO7dZI6K8cEaA73wtd/YKIWD1oeDWw= gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg= +gitlab.com/elixxir/comms v0.0.4-0.20221023190124-3441c3fdc3de h1:1YnKkJn3a7xiftFBRqLK5os7C6uF4okMtDXZyLrzIuY= +gitlab.com/elixxir/comms v0.0.4-0.20221023190124-3441c3fdc3de/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg= gitlab.com/elixxir/crypto v0.0.0-20200804182833-984246dea2c4/go.mod h1:ucm9SFKJo+K0N2GwRRpaNr+tKXMIOVWzmyUD0SbOu2c= gitlab.com/elixxir/crypto v0.0.3/go.mod h1:ZNgBOblhYToR4m8tj4cMvJ9UsJAUKq+p0gCp07WQmhA= gitlab.com/elixxir/crypto v0.0.7-0.20221017173452-565da4101a3b/go.mod h1:1rftbwSVdy49LkBIkPr+w+P2mDOerYeBKoZuB3r0yqI= -- GitLab