diff --git a/validator/client/beacon-api/submit_aggregate_selection_proof.go b/validator/client/beacon-api/submit_aggregate_selection_proof.go index 48de75bff..bac592f38 100644 --- a/validator/client/beacon-api/submit_aggregate_selection_proof.go +++ b/validator/client/beacon-api/submit_aggregate_selection_proof.go @@ -12,7 +12,6 @@ import ( "github.com/prysmaticlabs/prysm/v5/consensus-types/primitives" ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1" "github.com/prysmaticlabs/prysm/v5/time/slots" - "github.com/sirupsen/logrus" ) func (c *beaconApiValidatorClient) submitAggregateSelectionProof(ctx context.Context, in *ethpb.AggregateSelectionRequest) (*ethpb.AggregateSelectionResponse, error) { @@ -66,7 +65,6 @@ func (c *beaconApiValidatorClient) submitAggregateSelectionProof(ctx context.Con return nil, errors.Wrap(err, "failed to calculate attestation data root") } - logrus.Infof("Aggregator requested attestation %#x", attestationDataRoot) aggregateAttestationResponse, err := c.getAggregateAttestation(ctx, in.Slot, attestationDataRoot[:]) if err != nil { return nil, err