Skip to content
Snippets Groups Projects
Commit ff780cd3 authored by Jono Wenger's avatar Jono Wenger
Browse files

Make ReadyToSend use 340 nodes instead of the number reported in the NDF since...

Make ReadyToSend use 340 nodes instead of the number reported in the NDF since it is wrong (many are offline)
parent eda980b8
No related branches found
No related tags found
3 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!340Project/channels
......@@ -99,6 +99,10 @@ func (c *Cmix) ReadyToSend() bool {
jww.FATAL.Panicf("Failed to get node registration status: %+v", err)
}
// FIXME: This is a fix put in place because not all nodes in the NDF are
// online. This should be fixed.
total = 340
return numReg >= total*7/10
}
......
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