Skip to content
Snippets Groups Projects
Commit 0c557cfd authored by Jake Taylor's avatar Jake Taylor
Browse files

fix roundresults timeout

parent 33381b37
No related branches found
No related tags found
1 merge request!510Release
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment