Skip to content

Commit

Permalink
remove conflicting short options from cli specification
Browse files Browse the repository at this point in the history
  • Loading branch information
mars-risc0 committed Nov 20, 2024
1 parent 079d1a0 commit 0ed7be9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions host/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ pub struct ProveArgs {
#[clap(flatten)]
pub run_args: RunArgs,

#[clap(short, long, default_value_t = false)]
#[clap(long, default_value_t = false)]
/// Prove remotely using Bonsai
pub submit_to_bonsai: bool,

Expand All @@ -201,14 +201,14 @@ pub struct ProveArgs {
#[derive(clap::Args, Debug, Clone)]
pub struct SnarkArgs {
/// Convert the resulting STARK receipt into a Groth-16 SNARK using Bonsai
#[clap(short, long, default_value_t = false)]
#[clap(long, default_value_t = false)]
pub snark: bool,

#[clap(short, long, require_equals = true)]
#[clap(long, require_equals = true)]
/// URL of the Ethereum RPC node for SNARK verification.
pub verifier_rpc_url: Option<String>,

#[clap(short, long, require_equals = true)]
#[clap(long, require_equals = true)]
/// Address of the RiscZeroGroth16Verifier contract. Requires `eth_rpc_url` or
/// `verifier_rpc_url` to be set.
pub verifier_contract: Option<String>,
Expand Down

0 comments on commit 0ed7be9

Please sign in to comment.