You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consensus decides if it should connect to any of the core nodes by verifying connections.size() + 1 < getNodeCount()
this expression is wrong for sync nodes and should be changed to connections.size() + !isSyncNode() < getNodeCount()
check Schain.cpp:1126 for more details
The text was updated successfully, but these errors were encountered:
consensus decides if it should connect to any of the core nodes by verifying
connections.size() + 1 < getNodeCount()
this expression is wrong for
sync
nodes and should be changed toconnections.size() + !isSyncNode() < getNodeCount()
check
Schain.cpp:1126
for more detailsThe text was updated successfully, but these errors were encountered: