From 2339567b79aa8c976a3cf4f7713e9cbdf7aeb464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tuomas=20M=C3=A4kinen?= <1947505+tuommaki@users.noreply.github.com> Date: Tue, 19 Mar 2024 10:48:36 +0200 Subject: [PATCH] Align arguments for program names in CLI (#152) Other multi-word arguments were all spelled together so align prover and verifier name arguments accordingly as well. --- crates/cli/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index 71e5c7d0..aa6f93e6 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -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, /// name of the verifier. - #[clap(long, value_name = "VERIFIER NAME")] + #[clap(long = "verifiername", value_name = "VERIFIER NAME")] verifier_name: Option, /// 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")]