Skip to content

Commit a79977b

Browse files
committed
[release/1.4.17] core: lower transaction pool max queue limit
(cherry picked from commit 16d8397)
1 parent 794d2eb commit a79977b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/tx_pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var (
4747

4848
var (
4949
maxQueuedPerAccount = uint64(64) // Max limit of queued transactions per address
50-
maxQueuedInTotal = uint64(65536) // Max limit of queued transactions from all accounts
50+
maxQueuedInTotal = uint64(8192) // Max limit of queued transactions from all accounts
5151
maxQueuedLifetime = 3 * time.Hour // Max amount of time transactions from idle accounts are queued
5252
evictionInterval = time.Minute // Time interval to check for evictable transactions
5353
)

0 commit comments

Comments
 (0)