From 0defa6338b7a2395c8794f47c3308054574c3482 Mon Sep 17 00:00:00 2001 From: sanaz Date: Fri, 12 Apr 2024 13:45:34 -0700 Subject: [PATCH] includes the range format for the blob amounts flag --- test/cmd/txsim/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cmd/txsim/cli.go b/test/cmd/txsim/cli.go index cb58b4b47c..344ec44574 100644 --- a/test/cmd/txsim/cli.go +++ b/test/cmd/txsim/cli.go @@ -197,7 +197,7 @@ func flags() *flag.FlagSet { flags.IntVar(&stakeValue, "stake-value", 1000, "amount of initial stake per sequence") flags.IntVar(&blob, "blob", 0, "number of blob sequences to run") flags.StringVar(&blobSizes, "blob-sizes", "100-1000", "range of blob sizes to send") - flags.StringVar(&blobAmounts, "blob-amounts", "1", "range of blobs to send per PFB in a sequence") + flags.StringVar(&blobAmounts, "blob-amounts", "1", "range of blobs per PFB specified as a single value or a min-max range (e.g., 10 or 5-10). A single value indicates the exact number of blobs to be created.") flags.BoolVar(&useFeegrant, "feegrant", false, "use the feegrant module to pay for fees") flags.BoolVar(&suppressLogs, "suppressLogs", false, "disable logging") return flags