From 2cc53beca73503587d398bb2e7cacc89e74abd99 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Wed, 13 Sep 2017 13:47:04 +0200 Subject: [PATCH] CLI supports creating ledger keys --- client/commands/keys/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commands/keys/new.go b/client/commands/keys/new.go index 0a1a5a6071..f1f422a20a 100644 --- a/client/commands/keys/new.go +++ b/client/commands/keys/new.go @@ -42,7 +42,7 @@ passed as a command line argument for security.`, } func init() { - newCmd.Flags().StringP(flagType, "t", "ed25519", "Type of key (ed25519|secp256k1)") + newCmd.Flags().StringP(flagType, "t", "ed25519", "Type of key (ed25519|secp256k1|ledger") newCmd.Flags().Bool(flagNoBackup, false, "Don't print out seed phrase (if others are watching the terminal)") }