trie: handle removing the freshest node too

This commit is contained in:
Péter Szilágyi 2018-07-30 16:31:17 +03:00 committed by vsmk98
parent d20b42b6a6
commit 1ed50aa4e3
1 changed files with 14 additions and 4 deletions

View File

@ -475,9 +475,14 @@ func (db *Database) dereference(child common.Hash, parent common.Hash) {
}
if node.parents == 0 {
// Remove the node from the flush-list
if child == db.oldest {
switch child {
case db.oldest:
db.oldest = node.flushNext
} else {
db.nodes[node.flushNext].flushPrev = common.Hash{}
case db.newest:
db.newest = node.flushPrev
db.nodes[node.flushPrev].flushNext = common.Hash{}
default:
db.nodes[node.flushPrev].flushNext = node.flushNext
db.nodes[node.flushNext].flushPrev = node.flushPrev
}
@ -697,9 +702,14 @@ func (db *Database) uncache(hash common.Hash) {
return
}
// Node still exists, remove it from the flush-list
if hash == db.oldest {
switch hash {
case db.oldest:
db.oldest = node.flushNext
} else {
db.nodes[node.flushNext].flushPrev = common.Hash{}
case db.newest:
db.newest = node.flushPrev
db.nodes[node.flushPrev].flushNext = common.Hash{}
default:
db.nodes[node.flushPrev].flushNext = node.flushNext
db.nodes[node.flushNext].flushPrev = node.flushPrev
}