From 373c853d17300a0a96e3ceca0ebb77683b6ebc1f Mon Sep 17 00:00:00 2001 From: kasey <489222+kasey@users.noreply.github.com> Date: Sat, 27 Jan 2024 16:12:08 -0600 Subject: [PATCH] set limit to multiple of burst for goerli (#13544) Co-authored-by: Kasey Kirkham --- 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 503dd845f04b..a62c7ff446d7 100644 --- a/cmd/beacon-chain/flags/base.go +++ b/cmd/beacon-chain/flags/base.go @@ -171,7 +171,7 @@ var ( 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.", - Value: 64, + Value: 16, } // BlobBatchLimitBurstFactor specifies the factor by which blob batch size may increase. BlobBatchLimitBurstFactor = &cli.IntFlag{