go-ethereum/command/server/service.go
Ferran Borreguero 7282cf9c25 Resolve merge
2021-10-25 14:05:03 +02:00

11 lines
227 B
Go

package server
import (
"context"
"github.com/ethereum/go-ethereum/command/server/proto"
)
func (s *Server) Debug(ctx context.Context, req *proto.DebugInput) (*proto.DebugInput, error) {
return &proto.DebugInput{}, nil
}