Skip to content

Commit 7503143

Browse files
committed
commit both oldest and tries-in-memory on shutdown
1 parent 494b0a5 commit 7503143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/blockchain.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ func (bc *BlockChain) Stop() {
884884
if !bc.cacheConfig.TrieDirtyDisabled {
885885
triedb := bc.stateCache.TrieDB()
886886

887-
for _, offset := range []uint64{0, 1, math.MaxUint64} {
887+
for _, offset := range []uint64{0, 1, bc.cacheConfig.TriesInMemory - 1, math.MaxUint64} {
888888
if number := bc.CurrentBlock().NumberU64(); number > offset {
889889
var recent *types.Block
890890
if offset == math.MaxUint {

0 commit comments

Comments
 (0)