From 510f3ff65b8331063815b03d9da7daea631542ee Mon Sep 17 00:00:00 2001 From: Pablo Deymonnaz Date: Wed, 6 Nov 2024 18:28:18 -0300 Subject: [PATCH] fmt --- services/bls_aggregation/blsagg.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/bls_aggregation/blsagg.go b/services/bls_aggregation/blsagg.go index 4568657a..a70d4eaa 100644 --- a/services/bls_aggregation/blsagg.go +++ b/services/bls_aggregation/blsagg.go @@ -300,7 +300,10 @@ func (a *BlsAggregatorService) singleTaskAggregatorGoroutineFunc( "err", err, ) - text := fmt.Sprintf("AggregatorService failed to get operators state from avs registry at blockNum %d", taskCreatedBlock) + text := fmt.Sprintf( + "AggregatorService failed to get operators state from avs registry at blockNum %d", + taskCreatedBlock, + ) a.aggregatedResponsesC <- BlsAggregationServiceResponse{ Err: TaskInitializationErrorFn(utils.WrapError(text, err), taskIndex), TaskIndex: taskIndex,