Skip to content
Snippets Groups Projects
Commit a7a42e3b authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Updates to make go test work again

parent ef8acfa7
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment