From deb76f1c151e5db993f16d873e2f85c97ad8cf07 Mon Sep 17 00:00:00 2001 From: Jim McDonald Date: Wed, 19 Feb 2020 20:52:44 +0000 Subject: [PATCH] Fix double period in span name (#4910) --- beacon-chain/sync/validate_aggregate_proof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/sync/validate_aggregate_proof.go b/beacon-chain/sync/validate_aggregate_proof.go index 3a48aef19d..3e639abebb 100644 --- a/beacon-chain/sync/validate_aggregate_proof.go +++ b/beacon-chain/sync/validate_aggregate_proof.go @@ -140,7 +140,7 @@ func (r *Service) validateBlockInAttestation(ctx context.Context, a *ethpb.Aggre // This validates the aggregator's index in state is within the attesting indices of the attestation. func validateIndexInCommittee(ctx context.Context, s *stateTrie.BeaconState, a *ethpb.Attestation, validatorIndex uint64) error { - ctx, span := trace.StartSpan(ctx, "sync..validateIndexInCommittee") + ctx, span := trace.StartSpan(ctx, "sync.validateIndexInCommittee") defer span.End() committee, err := helpers.BeaconCommitteeFromState(s, a.Data.Slot, a.Data.CommitteeIndex)