Skip to content

Commit

Permalink
allows multisig commands to disable tls without server flag (#5583)
Browse files Browse the repository at this point in the history
removes dependency of tls flag on server flag in 'wallet:multisig:dkg:create'
and 'wallet:multisig:sign'

allows user to use flag combinations like '--hostname localhost --no-tls'
without needing to also set the '--server' flag
  • Loading branch information
hughy authored Oct 25, 2024
1 parent 92564e4 commit e787230
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ironfish-cli/src/commands/wallet/multisig/dkg/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export class DkgCreateCommand extends IronfishCommand {
}),
tls: Flags.boolean({
description: 'connect to the multisig server over TLS',
dependsOn: ['server'],
allowNo: true,
}),
minSigners: Flags.integer({
Expand Down
1 change: 0 additions & 1 deletion ironfish-cli/src/commands/wallet/multisig/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ export class SignMultisigTransactionCommand extends IronfishCommand {
}),
tls: Flags.boolean({
description: 'connect to the multisig server over TLS',
dependsOn: ['server'],
allowNo: true,
}),
}
Expand Down

0 comments on commit e787230

Please sign in to comment.