We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14078f6 commit 4e87b11Copy full SHA for 4e87b11
cmd/boost/wallet_cmd.go
@@ -42,7 +42,7 @@ var walletCmd = &cli.Command{
42
var walletNew = &cli.Command{
43
Name: "new",
44
Usage: "Generate a new key of the given type",
45
- ArgsUsage: "[bls|secp256k1 (default secp256k1)]",
+ ArgsUsage: "[bls|secp256k1|delegated (default secp256k1)]",
46
Action: func(cctx *cli.Context) error {
47
ctx := lcli.ReqContext(cctx)
48
@@ -459,6 +459,8 @@ var walletImport = &cli.Command{
459
ki.Type = types.KTSecp256k1
460
case 2:
461
ki.Type = types.KTBLS
462
+ case 3:
463
+ ki.Type = types.KTDelegated
464
default:
465
return fmt.Errorf("unrecognized key type: %d", gk.SigType)
466
}
0 commit comments