cmd/geth: fix error message

This commit is contained in:
Martin Holst Swende 2017-11-20 16:13:51 +01:00
parent f4c3ee1a52
commit fcc3212103
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -302,7 +302,7 @@ func accountCreate(ctx *cli.Context) error {
scryptN, scryptP, keydir, err := cfg.Node.AccountConfig()
if err != nil {
utils.Fatalf("Failed to create account: %v", err)
utils.Fatalf("Failed to read configuration: %v", err)
}
password := getPassPhrase("Your new account is locked with a password. Please give a password. Do not forget this password.", true, 0, utils.MakePasswordList(ctx))