From 104d732441ed750905cf395aebe403ed20286025 Mon Sep 17 00:00:00 2001 From: Jason-W123 <147362502+Jason-W123@users.noreply.github.com> Date: Fri, 8 May 2026 01:07:13 +0800 Subject: [PATCH] Update core/rawdb/database.go Co-authored-by: lightclient <14004106+lightclient@users.noreply.github.com> --- core/rawdb/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rawdb/database.go b/core/rawdb/database.go index 9af5eaa490..d63b250536 100644 --- a/core/rawdb/database.go +++ b/core/rawdb/database.go @@ -719,7 +719,7 @@ func ReadChainMetadata(db ethdb.KeyValueStore) [][]string { // more actionable message instead of the generic "". ppDatabaseVersion := func(val *uint64) string { if val == nil { - return "not set (new or uninitialized database)" + return ", database not initialized" } return fmt.Sprintf("%d (%#x)", *val, *val) }