From f9776cbf557b3ff5272d2b537b7afd44c0b5cce1 Mon Sep 17 00:00:00 2001 From: Fabio Di Fabio Date: Mon, 13 Jan 2025 12:43:21 +0100 Subject: [PATCH] Increase the max number of prioritized blob tx in the layered txpool for Pectra (#8101) Signed-off-by: Fabio Di Fabio --- .../ethereum/eth/transactions/TransactionPoolConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/transactions/TransactionPoolConfiguration.java b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/transactions/TransactionPoolConfiguration.java index 2f823830f..d1870682b 100644 --- a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/transactions/TransactionPoolConfiguration.java +++ b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/transactions/TransactionPoolConfiguration.java @@ -75,7 +75,7 @@ public interface TransactionPoolConfiguration { long DEFAULT_PENDING_TRANSACTIONS_LAYER_MAX_CAPACITY_BYTES = 12_500_000L; int DEFAULT_MAX_PRIORITIZED_TRANSACTIONS = 2000; EnumMap DEFAULT_MAX_PRIORITIZED_TRANSACTIONS_BY_TYPE = - new EnumMap<>(Map.of(TransactionType.BLOB, 6)); + new EnumMap<>(Map.of(TransactionType.BLOB, 9)); int DEFAULT_MAX_FUTURE_BY_SENDER = 200; Implementation DEFAULT_TX_POOL_IMPLEMENTATION = Implementation.LAYERED; Set
DEFAULT_PRIORITY_SENDERS = Set.of();