Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit b06cc73

Browse files
fab-10garyschulte
authored andcommitted
Increase the max number of prioritized blob tx in the layered txpool for Pectra (#8101)
Signed-off-by: Fabio Di Fabio <[email protected]>
1 parent 93bdaac commit b06cc73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/transactions/TransactionPoolConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ enum Implementation {
7575
long DEFAULT_PENDING_TRANSACTIONS_LAYER_MAX_CAPACITY_BYTES = 12_500_000L;
7676
int DEFAULT_MAX_PRIORITIZED_TRANSACTIONS = 2000;
7777
EnumMap<TransactionType, Integer> DEFAULT_MAX_PRIORITIZED_TRANSACTIONS_BY_TYPE =
78-
new EnumMap<>(Map.of(TransactionType.BLOB, 6));
78+
new EnumMap<>(Map.of(TransactionType.BLOB, 9));
7979
int DEFAULT_MAX_FUTURE_BY_SENDER = 200;
8080
Implementation DEFAULT_TX_POOL_IMPLEMENTATION = Implementation.LAYERED;
8181
Set<Address> DEFAULT_PRIORITY_SENDERS = Set.of();

0 commit comments

Comments
 (0)