Skip to content

Commit 4e87b11

Browse files
authored
add delegated wallet support (#1994)
1 parent 14078f6 commit 4e87b11

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/boost/wallet_cmd.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var walletCmd = &cli.Command{
4242
var walletNew = &cli.Command{
4343
Name: "new",
4444
Usage: "Generate a new key of the given type",
45-
ArgsUsage: "[bls|secp256k1 (default secp256k1)]",
45+
ArgsUsage: "[bls|secp256k1|delegated (default secp256k1)]",
4646
Action: func(cctx *cli.Context) error {
4747
ctx := lcli.ReqContext(cctx)
4848

@@ -459,6 +459,8 @@ var walletImport = &cli.Command{
459459
ki.Type = types.KTSecp256k1
460460
case 2:
461461
ki.Type = types.KTBLS
462+
case 3:
463+
ki.Type = types.KTDelegated
462464
default:
463465
return fmt.Errorf("unrecognized key type: %d", gk.SigType)
464466
}

0 commit comments

Comments
 (0)