fix: add blob batch flags to main/usage (#12614)

This commit is contained in:
terencechain
2023-07-14 06:08:57 -07:00
committed by Preston Van Loon
parent a41c01cb5e
commit a40640c9b9
3 changed files with 5 additions and 1 deletions

View File

@@ -165,7 +165,7 @@ var (
Usage: "The factor by which block batch limit may increase on burst.",
Value: 2,
}
// BlockBatchLimit specifies the requested block batch size.
// BlobBatchLimit specifies the requested blob batch size.
BlobBatchLimit = &cli.IntFlag{
Name: "blob-batch-limit",
Usage: "The amount of blobs the local peer is bounded to request and respond to in a batch.",

View File

@@ -53,6 +53,8 @@ var appFlags = []cli.Flag{
flags.SetGCPercent,
flags.BlockBatchLimit,
flags.BlockBatchLimitBurstFactor,
flags.BlobBatchLimit,
flags.BlobBatchLimitBurstFactor,
flags.InteropMockEth1DataVotesFlag,
flags.InteropNumValidatorsFlag,
flags.InteropGenesisTimeFlag,

View File

@@ -112,6 +112,8 @@ var appHelpFlagGroups = []flagGroup{
flags.SlotsPerArchivedPoint,
flags.BlockBatchLimit,
flags.BlockBatchLimitBurstFactor,
flags.BlobBatchLimit,
flags.BlobBatchLimitBurstFactor,
flags.EnableDebugRPCEndpoints,
flags.SubscribeToAllSubnets,
flags.HistoricalSlasherNode,