From 14e4aeb6ae7de24686208b6f884aabaaad035c23 Mon Sep 17 00:00:00 2001 From: kalo <24719519+KaloyanTanev@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:48:37 +0200 Subject: [PATCH] Log submitted attestation and attestatoin aggregations length --- core/bcast/bcast.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/bcast/bcast.go b/core/bcast/bcast.go index 5a652145d..7948cba99 100644 --- a/core/bcast/bcast.go +++ b/core/bcast/bcast.go @@ -163,6 +163,7 @@ func (b Broadcaster) Broadcast(ctx context.Context, duty core.Duty, set core.Sig log.Info(ctx, "Successfully submitted v2 attestations to beacon node", z.Any("delay", b.delayFunc(duty.Slot, core.DutyAttester)), + z.Int("amount", len(atts)), ) return nil @@ -261,6 +262,7 @@ func (b Broadcaster) Broadcast(ctx context.Context, duty core.Duty, set core.Sig log.Info(ctx, "Successfully submitted v2 attestation aggregations to beacon node", z.Any("delay", b.delayFunc(duty.Slot, core.DutyAggregator)), + z.Int("amount", len(aggAndProofs.SignedAggregateAndProofs)), ) return nil