From 87b53db3b46767921801c83428010ab44b9718b5 Mon Sep 17 00:00:00 2001 From: terence Date: Wed, 17 Jan 2024 05:30:31 -0800 Subject: [PATCH] Capitalize Aggregated Unaggregated Attestations Log (#13473) --- beacon-chain/operations/attestations/prepare_forkchoice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/operations/attestations/prepare_forkchoice.go b/beacon-chain/operations/attestations/prepare_forkchoice.go index 1fc610cd1888..8f6242efe2dc 100644 --- a/beacon-chain/operations/attestations/prepare_forkchoice.go +++ b/beacon-chain/operations/attestations/prepare_forkchoice.go @@ -42,7 +42,7 @@ func (s *Service) prepareForkChoiceAtts() { switch slotInterval.Interval { case 0: duration := time.Since(t) - log.WithField("Duration", duration).Debug("aggregated unaggregated attestations") + log.WithField("Duration", duration).Debug("Aggregated unaggregated attestations") batchForkChoiceAttsT1.Observe(float64(duration.Milliseconds())) case 1: batchForkChoiceAttsT2.Observe(float64(time.Since(t).Milliseconds()))