accounts: add note about backing up the keystore

This commit is contained in:
Kurkó Mihály 2019-04-10 10:15:01 +03:00
parent 7c91038bff
commit d6d3bdef07

View file

@ -179,6 +179,8 @@ func storeNewKey(ks keyStore, rand io.Reader, auth string) (*Key, accounts.Accou
zeroKey(key.PrivateKey)
return nil, a, err
}
fmt.Printf("Your new key is generated. Please backup the key file: %s\n", a.URL)
return key, a, err
}