Fix double period in span name (#4910)

This commit is contained in:
Jim McDonald 2020-02-19 20:52:44 +00:00 committed by GitHub
parent 6baffd4ccb
commit deb76f1c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)