2021-08-20 21:32:56 +00:00
|
|
|
package helpers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/rpc/statefetcher"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PrepareStateFetchGRPCError returns an appropriate gRPC error based on the supplied argument.
|
|
|
|
// The argument error should be a result of fetching state.
|
|
|
|
func PrepareStateFetchGRPCError(err error) error {
|
|
|
|
if stateNotFoundErr, ok := err.(*statefetcher.StateNotFoundError); ok {
|
|
|
|
return status.Errorf(codes.NotFound, "State not found: %v", stateNotFoundErr)
|
|
|
|
} else if parseErr, ok := err.(*statefetcher.StateIdParseError); ok {
|
|
|
|
return status.Errorf(codes.InvalidArgument, "Invalid state ID: %v", parseErr)
|
|
|
|
}
|
|
|
|
return status.Errorf(codes.Internal, "Invalid state ID: %v", err)
|
|
|
|
}
|
2021-09-02 16:54:53 +00:00
|
|
|
|
|
|
|
// IndexedVerificationFailure represents a collection of verification failures.
|
|
|
|
type IndexedVerificationFailure struct {
|
|
|
|
Failures []*SingleIndexedVerificationFailure `json:"failures"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SingleIndexedVerificationFailure represents an issue when verifying a single indexed object e.g. an item in an array.
|
|
|
|
type SingleIndexedVerificationFailure struct {
|
|
|
|
Index int `json:"index"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
}
|