e2e: reduce number of stateless nodes in test networks (#7010)

This commit is contained in:
Sam Kleinman
2021-09-27 17:00:05 -04:00
committed by GitHub
parent 9a16d930c6
commit 6be36613c9
+1 -1
View File
@@ -161,7 +161,7 @@ func generateTestnet(r *rand.Rand, opt map[string]interface{}) (e2e.Manifest, er
numValidators = 4
case "large":
// FIXME Networks are kept small since large ones use too much CPU.
numSeeds = r.Intn(2)
numSeeds = r.Intn(1)
numLightClients = r.Intn(2)
numValidators = 4 + r.Intn(4)
numFulls = r.Intn(4)