From 48fe6f3bb1282a4bb84fc2836cc503ea39e79412 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 19 Oct 2016 15:08:32 +0200 Subject: [PATCH] core/state: bump default trie cache generations to 10000 --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 0e46e5e2cb..dc001914ce 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -44,7 +44,7 @@ const ( maxPastTries = 12 // Trie cache generation limit. - maxTrieCacheGen = 120 + maxTrieCacheGen = 10000 // Number of codehash->size associations to keep. codeSizeCacheSize = 100000