From 6fa852400d689a4b4fc0e493ba5f7e5b221b4f32 Mon Sep 17 00:00:00 2001 From: tersec Date: Sun, 21 Jul 2024 05:10:26 +0000 Subject: [PATCH] pause deployment of long-range sync option default (#6436) --- beacon_chain/conf.nim | 5 +++-- docs/the_nimbus_book/src/options.md | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/beacon_chain/conf.nim b/beacon_chain/conf.nim index ae3394879..405448862 100644 --- a/beacon_chain/conf.nim +++ b/beacon_chain/conf.nim @@ -562,9 +562,10 @@ type name: "light-client-data-max-periods" .}: Option[uint64] longRangeSync* {. + hidden desc: "Enable long-range syncing (genesis sync)", - defaultValue: LongRangeSyncMode.Light, - name: "long-range-sync".}: LongRangeSyncMode + defaultValue: LongRangeSyncMode.Lenient, + name: "debug-long-range-sync".}: LongRangeSyncMode inProcessValidators* {. desc: "Disable the push model (the beacon node tells a signing process with the private keys of the validators what to sign and when) and load the validators in the beacon node itself" diff --git a/docs/the_nimbus_book/src/options.md b/docs/the_nimbus_book/src/options.md index 16242d407..670bf7955 100644 --- a/docs/the_nimbus_book/src/options.md +++ b/docs/the_nimbus_book/src/options.md @@ -112,7 +112,6 @@ The following options are available: --light-client-data-import-mode Which classes of light client data to import. Must be one of: none, only-new, full (slow startup), on-demand (may miss validator duties) [=only-new]. --light-client-data-max-periods Maximum number of sync committee periods to retain light client data. - --long-range-sync Enable long-range syncing (genesis sync) [=LongRangeSyncMode.Light]. --in-process-validators Disable the push model (the beacon node tells a signing process with the private keys of the validators what to sign and when) and load the validators in the beacon node itself [=true].