Skip to content

Commit 1504e95

Browse files
committed
Set the default value of account-type option to "platform"
1 parent 672f04b commit 1504e95

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/index.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ program
2020
.description("list keys")
2121
.option(
2222
"-t, --account-type <accountType>",
23-
"'platform' or 'asset'. The type of the key"
23+
"'platform' or 'asset'. The type of the key",
24+
"platform"
2425
)
2526
.action(handleError(listCommand));
2627

@@ -29,7 +30,8 @@ program
2930
.description("create a new key")
3031
.option(
3132
"-t, --account-type <accountType>",
32-
"'platform' or 'asset'. The type of the key"
33+
"'platform' or 'asset'. The type of the key",
34+
"platform"
3335
)
3436
.option("-p, --passphrase <passphrase>", "passphrase")
3537
.action(handleError(createCommand));
@@ -39,7 +41,8 @@ program
3941
.description("delete the key")
4042
.option(
4143
"-t, --account-type <accountType>",
42-
"'platform' or 'asset'. The type of the key"
44+
"'platform' or 'asset'. The type of the key",
45+
"platform"
4346
)
4447
.option("-a, --address <address>", "address")
4548
.action(handleError(deleteCommand));

0 commit comments

Comments
 (0)