From 05b279584481826f1a406cd2593b02536f4cca8e Mon Sep 17 00:00:00 2001 From: Dust Date: Fri, 16 Feb 2024 04:00:18 +0800 Subject: [PATCH] add BlockBatchLimit comment: Maximum 128 (#13502) Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com> --- cmd/beacon-chain/flags/base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/beacon-chain/flags/base.go b/cmd/beacon-chain/flags/base.go index 287d5efe9a92..38e7069cc266 100644 --- a/cmd/beacon-chain/flags/base.go +++ b/cmd/beacon-chain/flags/base.go @@ -152,7 +152,7 @@ var ( // BlockBatchLimit specifies the requested block batch size. BlockBatchLimit = &cli.IntFlag{ Name: "block-batch-limit", - Usage: "The amount of blocks the local peer is bounded to request and respond to in a batch.", + Usage: "The amount of blocks the local peer is bounded to request and respond to in a batch. Maximum 128", Value: 64, } // BlockBatchLimitBurstFactor specifies the factor by which block batch size may increase.