mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
d0bf03e863
* Simplify error handling for `JsonRestHandler` * POST * reduce complexity * review feedback * uncomment route * fix rest of tests
64 lines
1.6 KiB
Go
64 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.Post(
|
|
ctx,
|
|
"/eth/v1/beacon/pool/attestations",
|
|
nil,
|
|
bytes.NewBuffer(marshalledAttestation),
|
|
nil,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
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
|
|
}
|