good morning!!!!

Skip to content
Snippets Groups Projects
Commit 9fc90b67 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub
Browse files

Merge pull request #14358 from karalabe/wrong-genesis-description

core: make genesis incompatibility error more explicit
parents e353f9c0 edef84da
Branches
Tags
No related merge requests found
......@@ -86,7 +86,7 @@ type GenesisMismatchError struct {
}
func (e *GenesisMismatchError) Error() string {
return fmt.Sprintf("wrong genesis block in database (have %x, new %x)", e.Stored[:8], e.New[:8])
return fmt.Sprintf("database already contains an incompatible genesis block (have %x, new %x)", e.Stored[:8], e.New[:8])
}
// SetupGenesisBlock writes or updates the genesis block in db.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment