mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-08 15:13:58 -05:00
Increase the max number of prioritized blob tx in the layered txpool for Pectra (#8101)
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
This commit is contained in:
@@ -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<TransactionType, Integer> 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<Address> DEFAULT_PRIORITY_SENDERS = Set.of();
|
||||
|
||||
Reference in New Issue
Block a user