From 2c0cc8d171dbc8e520ab7eb6f6e386d04f085d80 Mon Sep 17 00:00:00 2001 From: Xiangyi Zheng Date: Tue, 26 Mar 2024 13:55:10 -0700 Subject: [PATCH] update default param --- node/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/cli.rs b/node/src/cli.rs index 4b00b77b8..65a2bef47 100644 --- a/node/src/cli.rs +++ b/node/src/cli.rs @@ -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 @@ -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, }, }