Skip to content

Commit

Permalink
fix: set default values
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Aug 13, 2024
1 parent af793d8 commit 43f9dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zero_bin/prover/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const HELP_HEADING: &str = "Prover options";
#[derive(Args, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Default)]
pub struct CliProverConfig {
/// The log of the max number of CPU cycles per proof.
#[arg(short, long, help_heading = HELP_HEADING, default_value_t = 20)]
#[arg(short, long, help_heading = HELP_HEADING, default_value_t = 19)]
max_cpu_len_log: usize,
/// Number of transactions in a batch to process at once.
#[arg(short, long, help_heading = HELP_HEADING, default_value_t = 1)]
#[arg(short, long, help_heading = HELP_HEADING, default_value_t = 10)]
batch_size: usize,
/// If true, save the public inputs to disk on error.
#[arg(short='i', long, help_heading = HELP_HEADING, default_value_t = false)]
Expand Down

0 comments on commit 43f9dcd

Please sign in to comment.