mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 12:10:05 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
package beacon_api
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
func (c beaconApiValidatorClient) proposeAttestation(ctx context.Context, attestation *ethpb.Attestation) (*ethpb.AttestResponse, error) {
|
|
if err := checkNilAttestation(attestation); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
marshalledAttestation, err := json.Marshal(jsonifyAttestations([]*ethpb.Attestation{attestation}))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if _, err := c.jsonRestHandler.PostRestJson(ctx, "/eth/v1/beacon/pool/attestations", nil, bytes.NewBuffer(marshalledAttestation), nil); err != nil {
|
|
return nil, errors.Wrap(err, "failed to send POST data to REST endpoint")
|
|
}
|
|
|
|
attestationDataRoot, err := attestation.Data.HashTreeRoot()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to compute attestation data root")
|
|
}
|
|
|
|
return ðpb.AttestResponse{AttestationDataRoot: attestationDataRoot[:]}, nil
|
|
}
|
|
|
|
// checkNilAttestation returns error if attestation or any field of attestation is nil.
|
|
func checkNilAttestation(attestation *ethpb.Attestation) error {
|
|
if attestation == nil {
|
|
return errors.New("attestation is nil")
|
|
}
|
|
|
|
if attestation.Data == nil {
|
|
return errors.New("attestation data is nil")
|
|
}
|
|
|
|
if attestation.Data.Source == nil || attestation.Data.Target == nil {
|
|
return errors.New("source/target in attestation data is nil")
|
|
}
|
|
|
|
if len(attestation.AggregationBits) == 0 {
|
|
return errors.New("attestation aggregation bits is empty")
|
|
}
|
|
|
|
if len(attestation.Signature) == 0 {
|
|
return errors.New("attestation signature is empty")
|
|
}
|
|
|
|
return nil
|
|
}
|