mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
lncli: group graph queries under Graph category
This commit moves DescribeGraph, GetNodeInfo and GetChanInfo under the Graph category.
This commit is contained in:
parent
608354032c
commit
5a4d595e53
1 changed files with 3 additions and 3 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue