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

core: make genesis incompatibility error more explicit
This commit is contained in:
Péter Szilágyi 2017-04-20 15:17:59 +03:00 committed by GitHub
commit 9fc90b6747
1 changed files with 1 additions and 1 deletions

View File

@ -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.