diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index bf053f0f2..315ebfdde 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -1243,8 +1243,8 @@ namespace nodetool if(!max_index) return 0; - size_t x = crypto::rand()%(max_index+1); - size_t res = (x*x*x)/(max_index*max_index); //parabola \/ + size_t x = crypto::rand()%(16*max_index+1); + size_t res = (x*x*x)/(max_index*max_index*16*16*16); //parabola \/ MDEBUG("Random connection index=" << res << "(x="<< x << ", max_index=" << max_index << ")"); return res; }