mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
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")
|
||
|
}
|