Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Align arguments for program names in CLI (#152)
Browse files Browse the repository at this point in the history
Other multi-word arguments were all spelled together so align prover
and verifier name arguments accordingly as well.
  • Loading branch information
tuommaki authored Mar 19, 2024
1 parent 9093cbe commit 2339567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ enum ConfCommands {
#[clap(short, long, value_name = "VERIFIER FILE or HASH")]
verifier: String,
/// name of the prover.
#[clap(long, value_name = "PROVER NAME")]
#[clap(long = "provername", value_name = "PROVER NAME")]
prover_name: Option<String>,
/// name of the verifier.
#[clap(long, value_name = "VERIFIER NAME")]
#[clap(long = "verifiername", value_name = "VERIFIER NAME")]
verifier_name: Option<String>,
/// url to get the prover image. If provided the prover will use this URL to get the prover image file. If not the cli tool starts a local HTTP server to serve the file to the node.
#[clap(long = "proverimgurl", value_name = "PROVER URL")]
Expand Down

0 comments on commit 2339567

Please sign in to comment.