good morning!!!!

Skip to content
Snippets Groups Projects
Commit 7e224b68 authored by Viktor Trón's avatar Viktor Trón
Browse files

db name database -> blockchain in backend error message

parent 2dc1b728
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ func New(config *Config) (*Ethereum, error) {
d, _ := db.Get([]byte("ProtocolVersion"))
protov := ethutil.NewValue(d).Uint()
if protov != ProtocolVersion && protov != 0 {
path := path.Join(config.DataDir, "database")
path := path.Join(config.DataDir, "blockchain")
return nil, fmt.Errorf("Database version mismatch. Protocol(%d / %d). `rm -rf %s`", protov, ProtocolVersion, path)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment