From cf04868218db11d5d49b26e120ec34fc8251dd8b Mon Sep 17 00:00:00 2001 From: tmors Date: Tue, 23 Jan 2024 13:11:00 +0800 Subject: [PATCH] add BlockBatchLimit comment: Maximum 128 --- 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 fcfb549a5cec..77f92b0d3032 100644 --- a/cmd/beacon-chain/flags/base.go +++ b/cmd/beacon-chain/flags/base.go @@ -158,7 +158,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.