Help text update for 'ipfs key gen'
Add info about the default key type
@RubenKelevra committed
Feb 4, 2020 at 13:58 UTC
4bdd03d2f3a575e6bb8cf2f60ba690ea1d683703
1 file changed
+1
-1
core/commands/keystore.go
+1
-1
@@ -63,7 +63,7 @@ var keyGenCmd = &cmds.Command{
63
Tagline: "Create a new keypair",
64
},
65
Options: []cmds.Option{
66
- cmds.StringOption(keyStoreTypeOptionName, "t", "type of the key to create [rsa, ed25519]").WithDefault("rsa"),
66
+ cmds.StringOption(keyStoreTypeOptionName, "t", "type of the key to create: rsa, ed25519. Default: rsa").WithDefault("rsa"),
67
cmds.IntOption(keyStoreSizeOptionName, "s", "size of the key to generate"),
68
},
69
Arguments: []cmds.Argument{