From 29dd13803e4934ef1cfffcc127ee5e8cd608be25 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Wed, 14 Feb 2024 17:31:43 -0600 Subject: [PATCH] Set default value for SignerCmd::min_blocks_per_checkpoint to 6 --- src/bin/nomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/nomic.rs b/src/bin/nomic.rs index 08cdf7d6..19a13bb4 100644 --- a/src/bin/nomic.rs +++ b/src/bin/nomic.rs @@ -1234,7 +1234,7 @@ pub struct SignerCmd { /// network produces checkpoints (higher values cause less frequent checkpoints). /// /// Signatures will always be contributed to previously completed checkpoints. - #[clap(long, default_value_t = 12)] + #[clap(long, default_value_t = 6)] min_blocks_per_checkpoint: u64, #[clap(long)]