cmd/commands: fix custom message commands

The sendcustom and subscribecustom sub commands weren't correctly
categorized and didn't have any usage text set.
This commit is contained in:
Oliver Gugger 2024-11-06 15:30:30 +01:00
parent 0e5c724b64
commit 4bf24695d7
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -9,7 +9,9 @@ import (
)
var sendCustomCommand = cli.Command{
Name: "sendcustom",
Name: "sendcustom",
Category: "Peers",
Usage: "Send a custom p2p wire message to a peer",
Flags: []cli.Flag{
cli.StringFlag{
Name: "peer",
@ -55,7 +57,10 @@ func sendCustom(ctx *cli.Context) error {
}
var subscribeCustomCommand = cli.Command{
Name: "subscribecustom",
Name: "subscribecustom",
Category: "Peers",
Usage: "Subscribe to incoming custom p2p wire messages from all " +
"peers",
Action: actionDecorator(subscribeCustom),
}
@ -65,8 +70,7 @@ func subscribeCustom(ctx *cli.Context) error {
defer cleanUp()
stream, err := client.SubscribeCustomMessages(
ctxc,
&lnrpc.SubscribeCustomMessagesRequest{},
ctxc, &lnrpc.SubscribeCustomMessagesRequest{},
)
if err != nil {
return err