mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 23:57:23 +00:00
[release/1.4.17] core: lower transaction pool max queue limit
(cherry picked from commit 16d8397e30)
This commit is contained in:
parent
794d2eb582
commit
a79977bc20
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ var (
|
|||
|
||||
var (
|
||||
maxQueuedPerAccount = uint64(64) // Max limit of queued transactions per address
|
||||
maxQueuedInTotal = uint64(65536) // Max limit of queued transactions from all accounts
|
||||
maxQueuedInTotal = uint64(8192) // Max limit of queued transactions from all accounts
|
||||
maxQueuedLifetime = 3 * time.Hour // Max amount of time transactions from idle accounts are queued
|
||||
evictionInterval = time.Minute // Time interval to check for evictable transactions
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue