From 38f59e28252edf37300fe97e5de36a0778e425ba Mon Sep 17 00:00:00 2001 From: Somnath Date: Wed, 27 Sep 2023 19:33:20 +0530 Subject: [PATCH] clients/erigon: Increase allowed blobcount in remote txs (#890) Increase allowed blobcount in remote txs Erigon now has a built-in spam protector for blob txs, this flag would increase the count of allowed blobs per account from the default 48 to a 1000 --- clients/erigon/erigon.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clients/erigon/erigon.sh b/clients/erigon/erigon.sh index 510a44ca3a..92e974316a 100644 --- a/clients/erigon/erigon.sh +++ b/clients/erigon/erigon.sh @@ -129,6 +129,9 @@ fi FLAGS="$FLAGS --http --http.addr=0.0.0.0 --http.api=admin,debug,eth,net,txpool,web3" FLAGS="$FLAGS --ws" +# Increase blob slots for tests +FLAGS="$FLAGS --txpool.blobslots=1000" + if [ "$HIVE_TERMINAL_TOTAL_DIFFICULTY" != "" ]; then JWT_SECRET="0x7365637265747365637265747365637265747365637265747365637265747365" echo -n $JWT_SECRET > /jwt.secret