From 0fdf63b5656aad017f30855dfaef9a591a8c887d Mon Sep 17 00:00:00 2001 From: Potuz Date: Thu, 14 Sep 2023 14:46:28 -0300 Subject: [PATCH] default to 7 seconds for first aggregation (#12876) Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> --- config/features/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/features/flags.go b/config/features/flags.go index 6fb6ba4644..fd34122959 100644 --- a/config/features/flags.go +++ b/config/features/flags.go @@ -62,7 +62,7 @@ var ( aggregateFirstInterval = &cli.DurationFlag{ Name: "aggregate-first-interval", Usage: "(Advanced): Specifies the first interval in which attestations are aggregated in the slot (typically unnaggregated attestations are aggregated in this interval)", - Value: 6500 * time.Millisecond, + Value: 7000 * time.Millisecond, Hidden: true, } aggregateSecondInterval = &cli.DurationFlag{