Bump sync-tolerance-epoch and make it a cli param

This commit is contained in:
Pawan Dhananjay
2025-02-25 09:45:51 -08:00
parent 279afb0696
commit 0c5580f23f
3 changed files with 14 additions and 8 deletions

View File

@@ -561,6 +561,14 @@ pub fn cli_app() -> Command {
.action(ArgAction::SetTrue)
.display_order(0)
)
.arg(
Arg::new("sync-tolerance-epochs")
.long("sync-tolerance-epochs")
.help("If the beacon node is within this many epochs from the head, we declare it to \
be synced regardless of the network sync state")
.action(ArgAction::Set)
.display_order(0)
)
.arg(
Arg::new("http-sse-capacity-multiplier")
.long("http-sse-capacity-multiplier")