Skip to content

Commit

Permalink
Merge pull request #8053 from kilrau/fix/lncli-desc
Browse files Browse the repository at this point in the history
lncli: fix description of connect/disconnect peer
  • Loading branch information
Roasbeef authored Oct 5, 2023
2 parents 31ba616 + 682827c commit 92fe545
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/lncli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ func sendMany(ctx *cli.Context) error {
var connectCommand = cli.Command{
Name: "connect",
Category: "Peers",
Usage: "Connect to a remote lnd peer.",
Usage: "Connect to a remote lightning peer.",
ArgsUsage: "<pubkey>@host",
Description: `
Connect to a peer using its <pubkey> and host.
Expand Down Expand Up @@ -682,7 +682,8 @@ func connectPeer(ctx *cli.Context) error {
var disconnectCommand = cli.Command{
Name: "disconnect",
Category: "Peers",
Usage: "Disconnect a remote lnd peer identified by public key.",
Usage: "Disconnect a remote lightning peer identified by " +
"public key.",
ArgsUsage: "<pubkey>",
Flags: []cli.Flag{
cli.StringFlag{
Expand Down

0 comments on commit 92fe545

Please sign in to comment.