mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
11 lines
227 B
Go
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
|
|
}
|