good morning!!!!

Skip to content
Snippets Groups Projects
Commit 16d8397e authored by Felix Lange's avatar Felix Lange
Browse files

core: lower transaction pool max queue limit

parent c88e4357
No related branches found
No related tags found
No related merge requests found
......@@ -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
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment