--validators-registration-batch-size: Change default value from 0 to 200. (#14981)

This commit is contained in:
Manu NALEPA
2025-03-04 17:32:24 +01:00
committed by GitHub
parent c718bdbe2b
commit 6015493de9
2 changed files with 4 additions and 1 deletions

View File

@@ -381,7 +381,7 @@ var (
ValidatorsRegistrationBatchSizeFlag = &cli.IntFlag{
Name: "validators-registration-batch-size",
Usage: "Sets the maximum size for one batch of validator registrations. Use a non-positive value to disable batching.",
Value: 0,
Value: 200,
}
// EnableDistributed enables the usage of prysm validator client in a Distributed Validator Cluster.
EnableDistributed = &cli.BoolFlag{