From fcc3212103dd713cf09f07def94f4be059686bae Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Mon, 20 Nov 2017 16:13:51 +0100 Subject: [PATCH] cmd/geth: fix error message --- cmd/geth/accountcmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/accountcmd.go b/cmd/geth/accountcmd.go index 602eb1d642..0db5c4ce0f 100644 --- a/cmd/geth/accountcmd.go +++ b/cmd/geth/accountcmd.go @@ -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))