2020-05-21 01:36:05 +00:00
|
|
|
package debug
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
pbrpc "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetBlock in an ssz-encoded format by block root.
|
|
|
|
func (ds *Server) GetBlock(
|
|
|
|
ctx context.Context,
|
|
|
|
req *pbrpc.BlockRequest,
|
|
|
|
) (*pbrpc.SSZResponse, error) {
|
|
|
|
root := bytesutil.ToBytes32(req.BlockRoot)
|
|
|
|
signedBlock, err := ds.BeaconDB.Block(ctx, root)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "Could not retrieve block by root: %v", err)
|
|
|
|
}
|
|
|
|
if signedBlock == nil {
|
|
|
|
return &pbrpc.SSZResponse{Encoded: make([]byte, 0)}, nil
|
|
|
|
}
|
2020-06-05 13:48:40 +00:00
|
|
|
encoded, err := signedBlock.MarshalSSZ()
|
2020-05-21 01:36:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "Could not marshal block: %v", err)
|
|
|
|
}
|
|
|
|
return &pbrpc.SSZResponse{
|
|
|
|
Encoded: encoded,
|
|
|
|
}, nil
|
|
|
|
}
|