Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jun 23, 2017
2 parents 19bd8dc + d31cfba commit 95b7c9e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions cmd/recover.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 95b7c9e

Please sign in to comment.