Unverified Commit 2e02c1ff authored by Delweng's avatar Delweng Committed by GitHub

core/rawdb: don't warn for missing "unclean shutdown markers" (#28014)

This changes removes the warn-printout about not finding unclean shutdown markers, which always happens on fresh installs / wiped databases.
parent 2f772991
...@@ -111,10 +111,10 @@ const crashesToKeep = 10 ...@@ -111,10 +111,10 @@ const crashesToKeep = 10
func PushUncleanShutdownMarker(db ethdb.KeyValueStore) ([]uint64, uint64, error) { func PushUncleanShutdownMarker(db ethdb.KeyValueStore) ([]uint64, uint64, error) {
var uncleanShutdowns crashList var uncleanShutdowns crashList
// Read old data // Read old data
if data, err := db.Get(uncleanShutdownKey); err != nil { if data, err := db.Get(uncleanShutdownKey); err == nil {
log.Warn("Error reading unclean shutdown markers", "error", err) if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil {
} else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil { return nil, 0, err
return nil, 0, err }
} }
var discarded = uncleanShutdowns.Discarded var discarded = uncleanShutdowns.Discarded
var previous = make([]uint64, len(uncleanShutdowns.Recent)) var previous = make([]uint64, len(uncleanShutdowns.Recent))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment