Skip to content

Commit

Permalink
fix: collision with argument --out for ./client validator add ...
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmus-kirk committed Sep 3, 2024
1 parent a18c568 commit 10ed4ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ tmp/
gtu-drop-account.json
hie.yaml
out/
# Nix stuff
flake.nix
flake.lock
shell.nix
2 changes: 1 addition & 1 deletion src/Concordium/Client/Commands.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ bakerAddCmd =
<*> blockCommission
<*> (option (eitherReader amountFractionFromStringInform) (long "delegation-finalization-commission" <> metavar "DECIMAL-FRACTION" <> help ("Fraction the validator takes in commission from delegators on finalization rewards. " ++ rangesHelpString "finalization reward commission")))
)
<*> optional (strOption (long "out" <> metavar "FILE" <> help "File to write the validator credentials to, in case of successful transaction. These can be used to start the node."))
<*> optional (strOption (long "validator-credentials-out" <> metavar "FILE" <> help "File to write the validator credentials to, in case of successful transaction. These can be used to start the node."))
)
(progDesc "Deploy validator credentials to the chain.")
)
Expand Down

0 comments on commit 10ed4ec

Please sign in to comment.