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

Align arguments for program names in CLI #152

Merged
merged 1 commit into from
Mar 19, 2024
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
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
Loading