Skip to content

Commit

Permalink
[release/1.4.17] core: lower transaction pool max queue limit
Browse files Browse the repository at this point in the history
(cherry picked from commit 16d8397)
  • Loading branch information
fjl committed Oct 10, 2016
1 parent 794d2eb commit a79977b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit a79977b

Please sign in to comment.