Skip to content

Commit

Permalink
update default param
Browse files Browse the repository at this point in the history
  • Loading branch information
ppca committed Mar 26, 2024
1 parent 0c765ae commit 2c0cc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub enum Cli {
#[arg(long, env("MPC_RECOVERY_MIN_TRIPLES"), default_value("20"))]
min_triples: usize,
/// At maximum, how many triples to stockpile on this node.
#[arg(long, env("MPC_RECOVERY_MAX_TRIPLES"), default_value("560"))]
#[arg(long, env("MPC_RECOVERY_MAX_TRIPLES"), default_value("640"))]
max_triples: usize,

/// At maximum, how many triple protocols can this current node introduce
Expand All @@ -87,7 +87,7 @@ pub enum Cli {
min_presignatures: usize,

/// At maximum, how many presignatures to stockpile on the network.
#[arg(long, env("MPC_RECOVERY_MAX_PRESIGNATURES"), default_value("280"))]
#[arg(long, env("MPC_RECOVERY_MAX_PRESIGNATURES"), default_value("320"))]
max_presignatures: usize,
},
}
Expand Down

0 comments on commit 2c0cc8d

Please sign in to comment.