Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions ouroboros-consensus-cardano/app/DBSynthesizer/Parsers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ parseOperationalCertFilePath =
strOption
( long "shelley-operational-certificate"
<> metavar "FILE"
<> help "Path to the delegation certificate"
<> help "Path to the delegation certificate (in JSON TextEnvelope format)"
<> completer (bashCompleter "file")
)

Expand All @@ -80,7 +80,7 @@ parseKesKeyFilePath =
strOption
( long "shelley-kes-key"
<> metavar "FILE"
<> help "Path to the KES signing key"
<> help "Path to the KES signing key (in JSON TextEnvelope format)"
<> completer (bashCompleter "file")
)

Expand All @@ -89,7 +89,7 @@ parseVrfKeyFilePath =
strOption
( long "shelley-vrf-key"
<> metavar "FILE"
<> help "Path to the VRF signing key"
<> help "Path to the VRF signing key (in JSON TextEnvelope format)"
<> completer (bashCompleter "file")
)

Expand All @@ -98,7 +98,8 @@ parseBulkFilePath =
strOption
( long "bulk-credentials-file"
<> metavar "FILE"
<> help "Path to the bulk credentials file"
<> help
"Path to the bulk credentials file (a JSON file containing an array of arrays containing 3 TextEnvelope objects for the opcert, VRF Signing key, KES signing key)"
<> completer (bashCompleter "file")
)

Expand Down
Loading