mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 09:23:48 +00:00
cmd/geth: fix error message
This commit is contained in:
parent
f4c3ee1a52
commit
fcc3212103
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ func accountCreate(ctx *cli.Context) error {
|
||||||
scryptN, scryptP, keydir, err := cfg.Node.AccountConfig()
|
scryptN, scryptP, keydir, err := cfg.Node.AccountConfig()
|
||||||
|
|
||||||
if err != nil {
|
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))
|
password := getPassPhrase("Your new account is locked with a password. Please give a password. Do not forget this password.", true, 0, utils.MakePasswordList(ctx))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue