From 342bb0fcefa8cbd3a40631e68e6582be69d86ac7 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Fri, 30 Aug 2024 23:08:50 +0800 Subject: [PATCH] Add value for MaxBuilderEpochMissedSlots (#14334) * add value for MaxBuilderEpochMissedSlots * make usage for MaxBuilderEpochMisedSlots more friendly --------- Co-authored-by: Preston Van Loon Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com> --- cmd/beacon-chain/flags/base.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/beacon-chain/flags/base.go b/cmd/beacon-chain/flags/base.go index 731aac2e5c20..b849acba73c5 100644 --- a/cmd/beacon-chain/flags/base.go +++ b/cmd/beacon-chain/flags/base.go @@ -21,8 +21,9 @@ var ( Value: 3, } MaxBuilderEpochMissedSlots = &cli.IntFlag{ - Name: "max-builder-epoch-missed-slots", - Usage: "Number of total skip slot to fallback from using relay/builder to local execution engine for block construction in last epoch rolling window", + Name: "max-builder-epoch-missed-slots", + Usage: "Number of total skip slot to fallback from using relay/builder to local execution engine for block construction in last epoch rolling window. " + + "The values are on the basis of the networks and the default value for mainnet is 5.", } // LocalBlockValueBoost sets a percentage boost for local block construction while using a custom builder. LocalBlockValueBoost = &cli.Uint64Flag{