cmd/ethereum: show some help before prompting for encryption passphrase

This commit is contained in:
Felix Lange 2015-03-10 16:44:22 +01:00
parent 2407f006ad
commit 221fae4112
1 changed files with 3 additions and 0 deletions

View File

@ -186,6 +186,7 @@ Please run 'ethereum account new' to create a new account.`)
func startEth(ctx *cli.Context, eth *eth.Ethereum) {
utils.StartEthereum(eth)
// Start auxiliary services if enabled.
if ctx.GlobalBool(utils.RPCEnabledFlag.Name) {
utils.StartRPC(eth, ctx)
}
@ -207,6 +208,8 @@ func accountList(ctx *cli.Context) {
func accountCreate(ctx *cli.Context) {
am := utils.GetAccountManager(ctx)
fmt.Println("The new account will be encrypted with a passphrase.")
fmt.Println("Please enter a passphrase now.")
auth, err := readPassword("Passphrase: ", true)
if err != nil {
utils.Fatalf("%v", err)