From 5909482fb55095b58ff3f9d8207a4daa69defe26 Mon Sep 17 00:00:00 2001 From: Jia Chenhui Date: Tue, 3 Apr 2018 23:13:19 +0800 Subject: [PATCH] core/state: avoid redundant addition to code size cache (#16427) --- core/state/database.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/core/state/database.go b/core/state/database.go index 36926ec69..c1b630991 100644 --- a/core/state/database.go +++ b/core/state/database.go @@ -26,7 +26,7 @@ import ( lru "github.com/hashicorp/golang-lru" ) -// Trie cache generation limit after which to evic trie nodes from memory. +// Trie cache generation limit after which to evict trie nodes from memory. var MaxTrieCacheGen = uint16(120) const ( @@ -151,9 +151,6 @@ func (db *cachingDB) ContractCodeSize(addrHash, codeHash common.Hash) (int, erro return cached.(int), nil } code, err := db.ContractCode(addrHash, codeHash) - if err == nil { - db.codeSizeCache.Add(codeHash, len(code)) - } return len(code), err }