trie: fix size accounting in cleaner (#25007)

Decrease children size instead of dirties size when marking dirties as cleaned up in trie cleaner
This commit is contained in:
aaronbuchwald
2022-06-21 12:00:37 +03:00
committed by GitHub
parent ad15050c7f
commit 241dd27300
+1 -1
View File
@@ -812,7 +812,7 @@ func (c *cleaner) Put(key []byte, rlp []byte) error {
delete(c.db.dirties, hash)
c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size))
if node.children != nil {
c.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2))
c.db.childrenSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2))
}
// Move the flushed node into the clean cache to prevent insta-reloads
if c.db.cleans != nil {