mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-28 00:03:39 +00:00
15 lines
535 B
Go
15 lines
535 B
Go
package rpchandlers
|
|
|
|
import (
|
|
"github.com/c4ei/YunSeokYeol/app/appmessage"
|
|
"github.com/c4ei/YunSeokYeol/app/rpc/rpccontext"
|
|
"github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router"
|
|
)
|
|
|
|
// HandleGetSubnetwork handles the respectively named RPC command
|
|
func HandleGetSubnetwork(context *rpccontext.Context, _ *router.Router, request appmessage.Message) (appmessage.Message, error) {
|
|
response := &appmessage.GetSubnetworkResponseMessage{}
|
|
response.Error = appmessage.RPCErrorf("not implemented")
|
|
return response, nil
|
|
}
|