From ff63001b6a2ca17922bc22b57d1d9d4eaccbc661 Mon Sep 17 00:00:00 2001
From: Jake Taylor <jake@elixxir.io>
Date: Wed, 29 Dec 2021 13:56:22 -0600
Subject: [PATCH] fix getroundinfo timeout

---
 api/results.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/results.go b/api/results.go
index f2358f366..017092851 100644
--- a/api/results.go
+++ b/api/results.go
@@ -93,7 +93,7 @@ func (c *Client) getRoundResults(roundList []id.Round, timeout time.Duration,
 
 	oldestRound := networkInstance.GetOldestRoundID()
 
-	roundEventTimeout := 7 * time.Second
+	roundEventTimeout := 5 * time.Second
 	if timeout < roundEventTimeout {
 		roundEventTimeout = timeout
 	}
-- 
GitLab