From d31cfbaeaa4d930798ec327b52917975f3203c11 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Fri, 23 Jun 2017 09:10:59 +0200 Subject: [PATCH] Fixed up help text for "keys recover" --- cmd/recover.go | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cmd/recover.go b/cmd/recover.go index f5e4f0527..4896c4e05 100644 --- a/cmd/recover.go +++ b/cmd/recover.go @@ -23,8 +23,16 @@ import ( // recoverCmd represents the recover command var recoverCmd = &cobra.Command{ Use: "recover [name]", - Short: "Change the password for a private key", - RunE: runRecoverCmd, + Short: "Recover a private key from a seed phrase", + Long: `Recover a private key from a seed phrase. + +I really hope you wrote this down when you created the new key. +The seed is only displayed on creation, never again. + +You can also use this to copy a key between multiple testnets, +simply by "recovering" the key in the other nets you want to copy +to. Of course, it has no coins on the other nets, just the same address.`, + RunE: runRecoverCmd, } func runRecoverCmd(cmd *cobra.Command, args []string) error {