From 5a4d595e5388b2199bb12af603645a5f581a6dda Mon Sep 17 00:00:00 2001 From: Andras Banki-Horvath Date: Fri, 27 Mar 2020 10:43:32 +0100 Subject: [PATCH] lncli: group graph queries under Graph category This commit moves DescribeGraph, GetNodeInfo and GetChanInfo under the Graph category. --- cmd/lncli/commands.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/lncli/commands.go b/cmd/lncli/commands.go index b9fc4089..21366774 100644 --- a/cmd/lncli/commands.go +++ b/cmd/lncli/commands.go @@ -2942,7 +2942,7 @@ func listInvoices(ctx *cli.Context) error { var describeGraphCommand = cli.Command{ Name: "describegraph", - Category: "Peers", + Category: "Graph", Description: "Prints a human readable version of the known channel " + "graph from the PoV of the node", Usage: "Describe the network graph.", @@ -3031,7 +3031,7 @@ func listPayments(ctx *cli.Context) error { var getChanInfoCommand = cli.Command{ Name: "getchaninfo", - Category: "Channels", + Category: "Graph", Usage: "Get the state of a channel.", Description: "Prints out the latest authenticated state for a " + "particular channel", @@ -3082,7 +3082,7 @@ func getChanInfo(ctx *cli.Context) error { var getNodeInfoCommand = cli.Command{ Name: "getnodeinfo", - Category: "Peers", + Category: "Graph", Usage: "Get information on a specific node.", Description: "Prints out the latest authenticated node state for an " + "advertised node",