diff --git a/network/send.go b/network/send.go index 70e6171a56912465f61d87102c85e6af8309dee4..cb8e376ff1dc71163f09acf74e8549da66203271 100644 --- a/network/send.go +++ b/network/send.go @@ -72,8 +72,8 @@ func (m *Manager) sendCMIX(msg format.Message, param params.CMIX) (id.Round, err remainingTime := param.Timeout - elapsed //find the best round to send to, excluding roudn which have been attempted - //bestRound, _ := m.instance.GetWaitingRounds().GetUpcomingRealtime(remainingTime, attempted) - bestRound, _ := m.instance.GetWaitingRounds().GetUpcomingRealtime(remainingTime) + bestRound, _ := m.instance.GetWaitingRounds().GetUpcomingRealtime(remainingTime, attempted) + //bestRound, _ := m.instance.GetWaitingRounds().GetUpcomingRealtime(remainingTime) topology, firstNode := buildToplogy(bestRound.Topology) //get they keys for the round, reject if any nodes do not have diff --git a/network/updates.go b/network/updates.go index 8f7fed1db097aedd99b848c95ac417c482ae85ec..cdd2f8e91bf37e1aee71f8c2fe93e0d913de421f 100644 --- a/network/updates.go +++ b/network/updates.go @@ -21,7 +21,7 @@ import ( "gitlab.com/elixxir/client/context" "gitlab.com/elixxir/client/context/stoppable" "gitlab.com/elixxir/comms/network" - "time" + // "time" ) // GetUpdates polls the network for updates.