From d1dceb680b3bdfcba353d5a3ccc01203d4e04443 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Mon, 21 Feb 2022 16:06:30 -0600 Subject: [PATCH] renable historical rounds for realtimeonly flag --- network/rounds/check.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/network/rounds/check.go b/network/rounds/check.go index 295a63f0a..afcd20f1d 100644 --- a/network/rounds/check.go +++ b/network/rounds/check.go @@ -56,11 +56,6 @@ func serializeRound(roundId id.Round) []byte { func (m *Manager) GetMessagesFromRound(roundID id.Round, identity reception.IdentityUse) { ri, err := m.Instance.GetRound(roundID) if err != nil || m.params.ForceHistoricalRounds { - if m.params.RealtimeOnly { - jww.WARN.Printf("Skipping round %d because it is not in ram and we are realtime only mode", - roundID) - return - } if m.params.ForceHistoricalRounds { jww.WARN.Printf("Forcing use of historical rounds for round ID %d.", roundID) -- GitLab