Skip to content

Commit

Permalink
Use constants in cli option description
Browse files Browse the repository at this point in the history
  • Loading branch information
usmansaleem committed Aug 31, 2023
1 parent 1390596 commit 2ad3250
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,19 @@ public class PicoV3WalletBulkloadParameters implements KeystoresParameters {
description =
"The path to a directory with the corresponding password files for the wallet files."
+ " Filename must match the corresponding wallet filename but with a .txt extension."
+ " This cannot be set if --wallets-password-file is also specified.",
+ " This cannot be set if "
+ WALLETS_PASSWORD_FILE
+ " is also specified.",
paramLabel = DefaultCommandValues.PATH_FORMAT_HELP)
private Path walletsPasswordsPath;

@Option(
names = {WALLETS_PASSWORD_FILE},
description =
"The path to a file that contains the password that all wallets use."
+ " This cannot be set if --wallets-passwords-path is also specified.",
+ " This cannot be set if "
+ WALLETS_PASSWORDS_PATH
+ " is also specified.",
paramLabel = DefaultCommandValues.PATH_FORMAT_HELP)
private Path walletsPasswordFile;

Expand Down

0 comments on commit 2ad3250

Please sign in to comment.