Add batch verifier limit (#15467)

This commit is contained in:
terence
2025-07-04 08:57:33 -07:00
committed by GitHub
parent 4be8de2476
commit f4bbe5ca40
10 changed files with 31 additions and 4 deletions

View File

@@ -338,4 +338,10 @@ var (
Name: "subscribe-all-data-subnets",
Usage: "Enable subscription to all data subnets.",
}
// BatchVerifierLimit sets the maximum number of signatures to batch verify at once.
BatchVerifierLimit = &cli.IntFlag{
Name: "batch-verifier-limit",
Usage: "Maximum number of signatures to batch verify at once for beacon attestation p2p gossip.",
Value: 1000,
}
)