mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
5c14b4c833
* Add outline for debug endpoints * Add outline for debug endpoints * Fix comment * Fix visibility
20 lines
617 B
Go
20 lines
617 B
Go
package debugv1
|
|
|
|
import (
|
|
"context"
|
|
|
|
ptypes "github.com/gogo/protobuf/types"
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1"
|
|
)
|
|
|
|
// GetState returns the full beacon state for a given state id.
|
|
func (bs *Server) GetState(ctx context.Context, req *ethpb.StateRequest) (*ethpb.BeaconStateResponse, error) {
|
|
return nil, errors.New("unimplemented")
|
|
}
|
|
|
|
// GetForkChoiceHeads retrieves the fork choice leaves for the current head.
|
|
func (bs *Server) GetForkChoiceHeads(ctx context.Context, _ *ptypes.Empty) (*ethpb.ForkChoiceHeadsResponse, error) {
|
|
return nil, errors.New("unimplemented")
|
|
}
|