Skip to content

Commit bed90c6

Browse files
authored
Update wallet command flag description for account (#5273)
This makes it more clear that it expects a name of an account
1 parent df09aff commit bed90c6

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

ironfish-cli/src/commands/wallet/burn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class Burn extends IronfishCommand {
3434
...RemoteFlags,
3535
account: Flags.string({
3636
char: 'f',
37-
description: 'The account to burn from',
37+
description: 'Name of the account to burn from',
3838
}),
3939
fee: IronFlag({
4040
char: 'o',

ironfish-cli/src/commands/wallet/chainport/send.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class BridgeCommand extends IronfishCommand {
4545
}),
4646
account: Flags.string({
4747
char: 'f',
48-
description: 'The account to send the asset from',
48+
description: 'Name of the account to send the asset from',
4949
}),
5050
to: Flags.string({
5151
char: 't',

ironfish-cli/src/commands/wallet/import.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ export class ImportCommand extends IronfishCommand {
3232
description: 'Rescan the blockchain once the account is imported',
3333
}),
3434
path: Flags.string({
35-
description: 'the path to the file containing the account to import',
35+
description: 'The path to the file containing the account to import',
3636
}),
3737
name: Flags.string({
38-
description: 'the name to use for the account',
38+
description: 'Name to use for the account',
3939
}),
4040
createdAt: Flags.integer({
4141
description: 'Block sequence to begin scanning from for the imported account',
4242
}),
4343
ledger: Flags.boolean({
44-
description: 'import a view-only account from a ledger device',
44+
description: 'Import a view-only account from a ledger device',
4545
default: false,
4646
exclusive: ['path'],
4747
}),
@@ -61,7 +61,7 @@ export class ImportCommand extends IronfishCommand {
6161
((flags.path && flags.path.length !== 0) || flags.ledger)
6262
) {
6363
this.error(
64-
`Your command includes an unexpected argument. Please pass only 1 of the following:
64+
`Your command includes an unexpected argument. Please pass only 1 of the following:
6565
1. the output of wallet:export OR
6666
2. --path to import an account from a file OR
6767
3. --ledger to import an account from a ledger device`,

ironfish-cli/src/commands/wallet/mint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class Mint extends IronfishCommand {
4040
...RemoteFlags,
4141
account: Flags.string({
4242
char: 'f',
43-
description: 'The account to mint from',
43+
description: 'Name of the account to mint from',
4444
}),
4545
fee: IronFlag({
4646
char: 'o',

ironfish-cli/src/commands/wallet/multisig/account/participants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class MultisigAccountParticipants extends IronfishCommand {
1212
...RemoteFlags,
1313
account: Flags.string({
1414
char: 'f',
15-
description: 'The account to list group identities for',
15+
description: 'Name of the account to list group identities for',
1616
}),
1717
}
1818

ironfish-cli/src/commands/wallet/multisig/commitment/aggregate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class CreateSigningPackage extends IronfishCommand {
1515
...RemoteFlags,
1616
account: Flags.string({
1717
char: 'f',
18-
description: 'The account to use when creating the signing package',
18+
description: 'Name of the account to use when creating the signing package',
1919
required: false,
2020
}),
2121
unsignedTransaction: Flags.string({

ironfish-cli/src/commands/wallet/multisig/commitment/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class CreateSigningCommitmentCommand extends IronfishCommand {
1818
account: Flags.string({
1919
char: 'f',
2020
description:
21-
'The account to use for generating the commitment, must be a multisig participant account',
21+
'Name of the account to use for generating the commitment, must be a multisig participant account',
2222
required: false,
2323
}),
2424
unsignedTransaction: Flags.string({

ironfish-cli/src/commands/wallet/multisig/signature/aggregate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class MultisigSign extends IronfishCommand {
1616
...RemoteFlags,
1717
account: Flags.string({
1818
char: 'f',
19-
description: 'Account to use when aggregating signature shares',
19+
description: 'Name of the account to use when aggregating signature shares',
2020
required: false,
2121
}),
2222
signingPackage: Flags.string({

ironfish-cli/src/commands/wallet/multisig/signature/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class CreateSignatureShareCommand extends IronfishCommand {
1818
...RemoteFlags,
1919
account: Flags.string({
2020
char: 'f',
21-
description: 'The account from which the signature share will be created',
21+
description: 'Name of the account from which the signature share will be created',
2222
required: false,
2323
}),
2424
signingPackage: Flags.string({

ironfish-cli/src/commands/wallet/notes/combine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class CombineNotesCommand extends IronfishCommand {
7070
}),
7171
account: Flags.string({
7272
char: 'f',
73-
description: 'The account to send money from',
73+
description: 'Name of the account to send money from',
7474
}),
7575
benchmark: Flags.boolean({
7676
hidden: true,

0 commit comments

Comments
 (0)