mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-29 09:02:40 +02:00
Merge pull request #8053 from kilrau/fix/lncli-desc
lncli: fix description of connect/disconnect peer
This commit is contained in:
@@ -620,7 +620,7 @@ func sendMany(ctx *cli.Context) error {
|
|||||||
var connectCommand = cli.Command{
|
var connectCommand = cli.Command{
|
||||||
Name: "connect",
|
Name: "connect",
|
||||||
Category: "Peers",
|
Category: "Peers",
|
||||||
Usage: "Connect to a remote lnd peer.",
|
Usage: "Connect to a remote lightning peer.",
|
||||||
ArgsUsage: "<pubkey>@host",
|
ArgsUsage: "<pubkey>@host",
|
||||||
Description: `
|
Description: `
|
||||||
Connect to a peer using its <pubkey> and host.
|
Connect to a peer using its <pubkey> and host.
|
||||||
@@ -682,7 +682,8 @@ func connectPeer(ctx *cli.Context) error {
|
|||||||
var disconnectCommand = cli.Command{
|
var disconnectCommand = cli.Command{
|
||||||
Name: "disconnect",
|
Name: "disconnect",
|
||||||
Category: "Peers",
|
Category: "Peers",
|
||||||
Usage: "Disconnect a remote lnd peer identified by public key.",
|
Usage: "Disconnect a remote lightning peer identified by " +
|
||||||
|
"public key.",
|
||||||
ArgsUsage: "<pubkey>",
|
ArgsUsage: "<pubkey>",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
|
Reference in New Issue
Block a user