mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
remove "experimental" from backfill flag name (#15690)
* remove "experimental" from backfill flag name * backwards-compatible alias * changelog --------- Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
This commit is contained in:
@@ -11,9 +11,9 @@ var (
|
||||
// EnableExperimentalBackfill enables backfill for checkpoint synced nodes.
|
||||
// This flag will be removed once backfill is enabled by default.
|
||||
EnableExperimentalBackfill = &cli.BoolFlag{
|
||||
Name: "enable-experimental-backfill",
|
||||
Usage: "Backfill is still experimental at this time. " +
|
||||
"It will only be enabled if this flag is specified and the node was started using checkpoint sync.",
|
||||
Name: "enable-backfill",
|
||||
Aliases: []string{"enable-experimental-backfill"},
|
||||
Usage: "Backfill will only be enabled when this flag is specified on a node using checkpoint sync.",
|
||||
}
|
||||
// BackfillBatchSize allows users to tune block backfill request sizes to maximize network utilization
|
||||
// at the cost of higher memory.
|
||||
|
||||
Reference in New Issue
Block a user