mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 14:47:16 +00:00
da3c239ed6
* Add nodeInfo * Remove interfaces for replacement Signed-off-by: Dmitry Savelev <darksawa@gmail.com> * Squashed 'interfaces/' content from commit 67abfdd git-subtree-dir: interfaces git-subtree-split: 67abfdd23b3bbef0d2f0c038275b6f47820d7f5e
546 lines
21 KiB
Go
546 lines
21 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
|
|
package remote
|
|
|
|
import (
|
|
context "context"
|
|
types "github.com/ledgerwatch/erigon-lib/gointerfaces/types"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
emptypb "google.golang.org/protobuf/types/known/emptypb"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
// ETHBACKENDClient is the client API for ETHBACKEND service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
type ETHBACKENDClient interface {
|
|
Etherbase(ctx context.Context, in *EtherbaseRequest, opts ...grpc.CallOption) (*EtherbaseReply, error)
|
|
NetVersion(ctx context.Context, in *NetVersionRequest, opts ...grpc.CallOption) (*NetVersionReply, error)
|
|
NetPeerCount(ctx context.Context, in *NetPeerCountRequest, opts ...grpc.CallOption) (*NetPeerCountReply, error)
|
|
// Fetch Execution Payload using its id.
|
|
EngineGetPayloadV1(ctx context.Context, in *EngineGetPayloadRequest, opts ...grpc.CallOption) (*types.ExecutionPayload, error)
|
|
// Execute the payload.
|
|
EngineExecutePayloadV1(ctx context.Context, in *types.ExecutionPayload, opts ...grpc.CallOption) (*EngineExecutePayloadReply, error)
|
|
// Update fork choice
|
|
EngineForkChoiceUpdatedV1(ctx context.Context, in *EngineForkChoiceUpdatedRequest, opts ...grpc.CallOption) (*EngineForkChoiceUpdatedReply, error)
|
|
// Version returns the service version number
|
|
Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error)
|
|
// ProtocolVersion returns the Ethereum protocol version number (e.g. 66 for ETH66).
|
|
ProtocolVersion(ctx context.Context, in *ProtocolVersionRequest, opts ...grpc.CallOption) (*ProtocolVersionReply, error)
|
|
// ClientVersion returns the Ethereum client version string using node name convention (e.g. TurboGeth/v2021.03.2-alpha/Linux).
|
|
ClientVersion(ctx context.Context, in *ClientVersionRequest, opts ...grpc.CallOption) (*ClientVersionReply, error)
|
|
Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (ETHBACKEND_SubscribeClient, error)
|
|
// High-level method - can read block from db, snapshots or apply any other logic
|
|
// it doesn't provide consistency
|
|
Block(ctx context.Context, in *BlockRequest, opts ...grpc.CallOption) (*BlockReply, error)
|
|
// NodeInfo collects and returns NodeInfo from all running celery instances.
|
|
NodeInfo(ctx context.Context, in *NodesInfoRequest, opts ...grpc.CallOption) (*NodesInfoReply, error)
|
|
}
|
|
|
|
type eTHBACKENDClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewETHBACKENDClient(cc grpc.ClientConnInterface) ETHBACKENDClient {
|
|
return &eTHBACKENDClient{cc}
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) Etherbase(ctx context.Context, in *EtherbaseRequest, opts ...grpc.CallOption) (*EtherbaseReply, error) {
|
|
out := new(EtherbaseReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/Etherbase", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) NetVersion(ctx context.Context, in *NetVersionRequest, opts ...grpc.CallOption) (*NetVersionReply, error) {
|
|
out := new(NetVersionReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/NetVersion", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) NetPeerCount(ctx context.Context, in *NetPeerCountRequest, opts ...grpc.CallOption) (*NetPeerCountReply, error) {
|
|
out := new(NetPeerCountReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/NetPeerCount", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) EngineGetPayloadV1(ctx context.Context, in *EngineGetPayloadRequest, opts ...grpc.CallOption) (*types.ExecutionPayload, error) {
|
|
out := new(types.ExecutionPayload)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/EngineGetPayloadV1", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) EngineExecutePayloadV1(ctx context.Context, in *types.ExecutionPayload, opts ...grpc.CallOption) (*EngineExecutePayloadReply, error) {
|
|
out := new(EngineExecutePayloadReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/EngineExecutePayloadV1", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) EngineForkChoiceUpdatedV1(ctx context.Context, in *EngineForkChoiceUpdatedRequest, opts ...grpc.CallOption) (*EngineForkChoiceUpdatedReply, error) {
|
|
out := new(EngineForkChoiceUpdatedReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/EngineForkChoiceUpdatedV1", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error) {
|
|
out := new(types.VersionReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/Version", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) ProtocolVersion(ctx context.Context, in *ProtocolVersionRequest, opts ...grpc.CallOption) (*ProtocolVersionReply, error) {
|
|
out := new(ProtocolVersionReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/ProtocolVersion", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) ClientVersion(ctx context.Context, in *ClientVersionRequest, opts ...grpc.CallOption) (*ClientVersionReply, error) {
|
|
out := new(ClientVersionReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/ClientVersion", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (ETHBACKEND_SubscribeClient, error) {
|
|
stream, err := c.cc.NewStream(ctx, ÐBACKEND_ServiceDesc.Streams[0], "/remote.ETHBACKEND/Subscribe", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &eTHBACKENDSubscribeClient{stream}
|
|
if err := x.ClientStream.SendMsg(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := x.ClientStream.CloseSend(); err != nil {
|
|
return nil, err
|
|
}
|
|
return x, nil
|
|
}
|
|
|
|
type ETHBACKEND_SubscribeClient interface {
|
|
Recv() (*SubscribeReply, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type eTHBACKENDSubscribeClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *eTHBACKENDSubscribeClient) Recv() (*SubscribeReply, error) {
|
|
m := new(SubscribeReply)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) Block(ctx context.Context, in *BlockRequest, opts ...grpc.CallOption) (*BlockReply, error) {
|
|
out := new(BlockReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/Block", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *eTHBACKENDClient) NodeInfo(ctx context.Context, in *NodesInfoRequest, opts ...grpc.CallOption) (*NodesInfoReply, error) {
|
|
out := new(NodesInfoReply)
|
|
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/NodeInfo", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ETHBACKENDServer is the server API for ETHBACKEND service.
|
|
// All implementations must embed UnimplementedETHBACKENDServer
|
|
// for forward compatibility
|
|
type ETHBACKENDServer interface {
|
|
Etherbase(context.Context, *EtherbaseRequest) (*EtherbaseReply, error)
|
|
NetVersion(context.Context, *NetVersionRequest) (*NetVersionReply, error)
|
|
NetPeerCount(context.Context, *NetPeerCountRequest) (*NetPeerCountReply, error)
|
|
// Fetch Execution Payload using its id.
|
|
EngineGetPayloadV1(context.Context, *EngineGetPayloadRequest) (*types.ExecutionPayload, error)
|
|
// Execute the payload.
|
|
EngineExecutePayloadV1(context.Context, *types.ExecutionPayload) (*EngineExecutePayloadReply, error)
|
|
// Update fork choice
|
|
EngineForkChoiceUpdatedV1(context.Context, *EngineForkChoiceUpdatedRequest) (*EngineForkChoiceUpdatedReply, error)
|
|
// Version returns the service version number
|
|
Version(context.Context, *emptypb.Empty) (*types.VersionReply, error)
|
|
// ProtocolVersion returns the Ethereum protocol version number (e.g. 66 for ETH66).
|
|
ProtocolVersion(context.Context, *ProtocolVersionRequest) (*ProtocolVersionReply, error)
|
|
// ClientVersion returns the Ethereum client version string using node name convention (e.g. TurboGeth/v2021.03.2-alpha/Linux).
|
|
ClientVersion(context.Context, *ClientVersionRequest) (*ClientVersionReply, error)
|
|
Subscribe(*SubscribeRequest, ETHBACKEND_SubscribeServer) error
|
|
// High-level method - can read block from db, snapshots or apply any other logic
|
|
// it doesn't provide consistency
|
|
Block(context.Context, *BlockRequest) (*BlockReply, error)
|
|
// NodeInfo collects and returns NodeInfo from all running celery instances.
|
|
NodeInfo(context.Context, *NodesInfoRequest) (*NodesInfoReply, error)
|
|
mustEmbedUnimplementedETHBACKENDServer()
|
|
}
|
|
|
|
// UnimplementedETHBACKENDServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedETHBACKENDServer struct {
|
|
}
|
|
|
|
func (UnimplementedETHBACKENDServer) Etherbase(context.Context, *EtherbaseRequest) (*EtherbaseReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Etherbase not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) NetVersion(context.Context, *NetVersionRequest) (*NetVersionReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method NetVersion not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) NetPeerCount(context.Context, *NetPeerCountRequest) (*NetPeerCountReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method NetPeerCount not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) EngineGetPayloadV1(context.Context, *EngineGetPayloadRequest) (*types.ExecutionPayload, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method EngineGetPayloadV1 not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) EngineExecutePayloadV1(context.Context, *types.ExecutionPayload) (*EngineExecutePayloadReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method EngineExecutePayloadV1 not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) EngineForkChoiceUpdatedV1(context.Context, *EngineForkChoiceUpdatedRequest) (*EngineForkChoiceUpdatedReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method EngineForkChoiceUpdatedV1 not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) Version(context.Context, *emptypb.Empty) (*types.VersionReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Version not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) ProtocolVersion(context.Context, *ProtocolVersionRequest) (*ProtocolVersionReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProtocolVersion not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) ClientVersion(context.Context, *ClientVersionRequest) (*ClientVersionReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ClientVersion not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) Subscribe(*SubscribeRequest, ETHBACKEND_SubscribeServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method Subscribe not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) Block(context.Context, *BlockRequest) (*BlockReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Block not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) NodeInfo(context.Context, *NodesInfoRequest) (*NodesInfoReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method NodeInfo not implemented")
|
|
}
|
|
func (UnimplementedETHBACKENDServer) mustEmbedUnimplementedETHBACKENDServer() {}
|
|
|
|
// UnsafeETHBACKENDServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to ETHBACKENDServer will
|
|
// result in compilation errors.
|
|
type UnsafeETHBACKENDServer interface {
|
|
mustEmbedUnimplementedETHBACKENDServer()
|
|
}
|
|
|
|
func RegisterETHBACKENDServer(s grpc.ServiceRegistrar, srv ETHBACKENDServer) {
|
|
s.RegisterService(ÐBACKEND_ServiceDesc, srv)
|
|
}
|
|
|
|
func _ETHBACKEND_Etherbase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EtherbaseRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).Etherbase(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/Etherbase",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).Etherbase(ctx, req.(*EtherbaseRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_NetVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(NetVersionRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).NetVersion(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/NetVersion",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).NetVersion(ctx, req.(*NetVersionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_NetPeerCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(NetPeerCountRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).NetPeerCount(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/NetPeerCount",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).NetPeerCount(ctx, req.(*NetPeerCountRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_EngineGetPayloadV1_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EngineGetPayloadRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).EngineGetPayloadV1(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/EngineGetPayloadV1",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).EngineGetPayloadV1(ctx, req.(*EngineGetPayloadRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_EngineExecutePayloadV1_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(types.ExecutionPayload)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).EngineExecutePayloadV1(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/EngineExecutePayloadV1",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).EngineExecutePayloadV1(ctx, req.(*types.ExecutionPayload))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_EngineForkChoiceUpdatedV1_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EngineForkChoiceUpdatedRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).EngineForkChoiceUpdatedV1(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/EngineForkChoiceUpdatedV1",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).EngineForkChoiceUpdatedV1(ctx, req.(*EngineForkChoiceUpdatedRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_Version_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(emptypb.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).Version(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/Version",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).Version(ctx, req.(*emptypb.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_ProtocolVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProtocolVersionRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).ProtocolVersion(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/ProtocolVersion",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).ProtocolVersion(ctx, req.(*ProtocolVersionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_ClientVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ClientVersionRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).ClientVersion(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/ClientVersion",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).ClientVersion(ctx, req.(*ClientVersionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_Subscribe_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
m := new(SubscribeRequest)
|
|
if err := stream.RecvMsg(m); err != nil {
|
|
return err
|
|
}
|
|
return srv.(ETHBACKENDServer).Subscribe(m, &eTHBACKENDSubscribeServer{stream})
|
|
}
|
|
|
|
type ETHBACKEND_SubscribeServer interface {
|
|
Send(*SubscribeReply) error
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type eTHBACKENDSubscribeServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *eTHBACKENDSubscribeServer) Send(m *SubscribeReply) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func _ETHBACKEND_Block_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(BlockRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).Block(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/Block",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).Block(ctx, req.(*BlockRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ETHBACKEND_NodeInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(NodesInfoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ETHBACKENDServer).NodeInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.ETHBACKEND/NodeInfo",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ETHBACKENDServer).NodeInfo(ctx, req.(*NodesInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// ETHBACKEND_ServiceDesc is the grpc.ServiceDesc for ETHBACKEND service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var ETHBACKEND_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "remote.ETHBACKEND",
|
|
HandlerType: (*ETHBACKENDServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Etherbase",
|
|
Handler: _ETHBACKEND_Etherbase_Handler,
|
|
},
|
|
{
|
|
MethodName: "NetVersion",
|
|
Handler: _ETHBACKEND_NetVersion_Handler,
|
|
},
|
|
{
|
|
MethodName: "NetPeerCount",
|
|
Handler: _ETHBACKEND_NetPeerCount_Handler,
|
|
},
|
|
{
|
|
MethodName: "EngineGetPayloadV1",
|
|
Handler: _ETHBACKEND_EngineGetPayloadV1_Handler,
|
|
},
|
|
{
|
|
MethodName: "EngineExecutePayloadV1",
|
|
Handler: _ETHBACKEND_EngineExecutePayloadV1_Handler,
|
|
},
|
|
{
|
|
MethodName: "EngineForkChoiceUpdatedV1",
|
|
Handler: _ETHBACKEND_EngineForkChoiceUpdatedV1_Handler,
|
|
},
|
|
{
|
|
MethodName: "Version",
|
|
Handler: _ETHBACKEND_Version_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProtocolVersion",
|
|
Handler: _ETHBACKEND_ProtocolVersion_Handler,
|
|
},
|
|
{
|
|
MethodName: "ClientVersion",
|
|
Handler: _ETHBACKEND_ClientVersion_Handler,
|
|
},
|
|
{
|
|
MethodName: "Block",
|
|
Handler: _ETHBACKEND_Block_Handler,
|
|
},
|
|
{
|
|
MethodName: "NodeInfo",
|
|
Handler: _ETHBACKEND_NodeInfo_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Subscribe",
|
|
Handler: _ETHBACKEND_Subscribe_Handler,
|
|
ServerStreams: true,
|
|
},
|
|
},
|
|
Metadata: "remote/ethbackend.proto",
|
|
}
|