From 0c557cfd2a1ced2fdf37a66afd30244cda18dae3 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Tue, 7 Jun 2022 15:07:23 -0500 Subject: [PATCH] fix roundresults timeout --- cmix/results.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmix/results.go b/cmix/results.go index b8b9aad80..a6f8c4ad8 100644 --- a/cmix/results.go +++ b/cmix/results.go @@ -142,13 +142,12 @@ func (c *client) getRoundResults(roundList []id.Round, timeout time.Duration, rrc := func(round rounds.Round, success bool) { result := ds.EventReturn{ RoundInfo: round.Raw, - TimedOut: success, + TimedOut: !success, } sendResults <- result } _ = c.Retriever.LookupHistoricalRound(rnd, rrc) } - } // Determine the results of all rounds requested -- GitLab