Skip to content

Commit

Permalink
fix(core): remove password flag constraint for core:forger command (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian authored Nov 19, 2019
1 parent f3dcb1f commit 5aea54f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/commands/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ export abstract class BaseCommand extends Command {
}),
bip39: flags.string({
description: "the plain text bip39 passphrase",
exclusive: ["bip38", "password"],
exclusive: ["bip38"],
}),
password: flags.string({
description: "the password for the encrypted bip38",
dependsOn: ["bip38"],
}),
suffix: flags.string({
hidden: true,
Expand Down

0 comments on commit 5aea54f

Please sign in to comment.