mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-18 21:35:24 +01:00
trivial: missing dots
This commit is contained in:
parent
9331a259d8
commit
c8fc9b0a85
@ -28,7 +28,7 @@ var (
|
||||
var profileSubCommand = cli.Command{
|
||||
Name: "profile",
|
||||
Category: "Profiles",
|
||||
Usage: "Create and manage lncli profiles",
|
||||
Usage: "Create and manage lncli profiles.",
|
||||
Description: `
|
||||
Profiles for lncli are an easy and comfortable way to manage multiple
|
||||
nodes from the command line by storing node specific parameters like RPC
|
||||
@ -79,7 +79,7 @@ func profileList(_ *cli.Context) error {
|
||||
|
||||
var profileAddCommand = cli.Command{
|
||||
Name: "add",
|
||||
Usage: "Add a new profile",
|
||||
Usage: "Add a new profile.",
|
||||
ArgsUsage: "name",
|
||||
Description: `
|
||||
Add a new named profile to the main profiles.json. All global options
|
||||
@ -230,7 +230,7 @@ func profileRemove(ctx *cli.Context) error {
|
||||
|
||||
var profileSetDefaultCommand = cli.Command{
|
||||
Name: "setdefault",
|
||||
Usage: "Set the default profile",
|
||||
Usage: "Set the default profile.",
|
||||
ArgsUsage: "name",
|
||||
Description: `
|
||||
Set a specified profile to be used as the default profile.
|
||||
@ -297,7 +297,7 @@ func profileSetDefault(ctx *cli.Context) error {
|
||||
|
||||
var profileUnsetDefaultCommand = cli.Command{
|
||||
Name: "unsetdefault",
|
||||
Usage: "Unsets the default profile",
|
||||
Usage: "Unsets the default profile.",
|
||||
Description: `
|
||||
Disables the use of a default profile and restores lncli to its original
|
||||
behavior.
|
||||
@ -319,7 +319,7 @@ func profileUnsetDefault(_ *cli.Context) error {
|
||||
|
||||
var profileAddMacaroonCommand = cli.Command{
|
||||
Name: "addmacaroon",
|
||||
Usage: "Add a macaroon to a profile's macaroon jar",
|
||||
Usage: "Add a macaroon to a profile's macaroon jar.",
|
||||
ArgsUsage: "macaroon-name",
|
||||
Description: `
|
||||
Add an additional macaroon specified by the global option --macaroonpath
|
||||
|
@ -2444,7 +2444,7 @@ var exportChanBackupCommand = cli.Command{
|
||||
Name: "exportchanbackup",
|
||||
Category: "Channels",
|
||||
Usage: "Obtain a static channel back up for a selected channels, " +
|
||||
"or all known channels",
|
||||
"or all known channels.",
|
||||
ArgsUsage: "[chan_point] [--all] [--output_file]",
|
||||
Description: `
|
||||
This command allows a user to export a Static Channel Backup (SCB) for
|
||||
@ -2600,7 +2600,7 @@ func exportChanBackup(ctx *cli.Context) error {
|
||||
var verifyChanBackupCommand = cli.Command{
|
||||
Name: "verifychanbackup",
|
||||
Category: "Channels",
|
||||
Usage: "Verify an existing channel backup",
|
||||
Usage: "Verify an existing channel backup.",
|
||||
ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file]",
|
||||
Description: `
|
||||
This command allows a user to verify an existing Single or Multi channel
|
||||
@ -2678,7 +2678,7 @@ var restoreChanBackupCommand = cli.Command{
|
||||
Name: "restorechanbackup",
|
||||
Category: "Channels",
|
||||
Usage: "Restore an existing single or multi-channel static channel " +
|
||||
"backup",
|
||||
"backup.",
|
||||
ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file=",
|
||||
Description: `
|
||||
Allows a user to restore a Static Channel Backup (SCB) that was
|
||||
|
@ -89,7 +89,7 @@ func settleInvoice(ctx *cli.Context) error {
|
||||
var cancelInvoiceCommand = cli.Command{
|
||||
Name: "cancelinvoice",
|
||||
Category: "Invoices",
|
||||
Usage: "Cancels a (hold) invoice",
|
||||
Usage: "Cancels a (hold) invoice.",
|
||||
Description: `
|
||||
Todo.`,
|
||||
ArgsUsage: "paymenthash",
|
||||
|
@ -63,6 +63,7 @@ you.
|
||||
* [Fixed timeout flakes in async payment benchmark tests](https://github.com/lightningnetwork/lnd/pull/5579).
|
||||
* [Fixed a missing import and git tag in the healthcheck package](https://github.com/lightningnetwork/lnd/pull/5582).
|
||||
* [Fixed a data race in payment unit test](https://github.com/lightningnetwork/lnd/pull/5573).
|
||||
* [Missing dots in cmd interface](https://github.com/lightningnetwork/lnd/pull/5535).
|
||||
|
||||
## Database
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user