From a79977bc208b52e72ff412a7acef784ee61d8a80 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 10 Oct 2016 15:32:06 +0200 Subject: [PATCH] [release/1.4.17] core: lower transaction pool max queue limit (cherry picked from commit 16d8397e30ea0e4d07a07f5c4416b8888daf9796) --- core/tx_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tx_pool.go b/core/tx_pool.go index 10a110e0bd9a..4c9410d8ed4c 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -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 )