mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-31 08:02:25 +02:00
Bump urfave/cli version
urfave/cli added functionality for generating Fish shell tab-completions a few releases ago. We bump the dependency version to get access to this functionality.
This commit is contained in:
@@ -2318,8 +2318,9 @@ var verifyChanBackupCommand = cli.Command{
|
||||
"from exportchanbackup",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "multi_file",
|
||||
Usage: "the path to a multi-channel back up file",
|
||||
Name: "multi_file",
|
||||
Usage: "the path to a multi-channel back up file",
|
||||
TakesFile: true,
|
||||
},
|
||||
},
|
||||
Action: actionDecorator(verifyChanBackup),
|
||||
@@ -2400,8 +2401,9 @@ var restoreChanBackupCommand = cli.Command{
|
||||
"from exportchanbackup",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "multi_file",
|
||||
Usage: "the path to a multi-channel back up file",
|
||||
Name: "multi_file",
|
||||
Usage: "the path to a multi-channel back up file",
|
||||
TakesFile: true,
|
||||
},
|
||||
},
|
||||
Action: actionDecorator(restoreChanBackup),
|
||||
|
@@ -272,14 +272,16 @@ func main() {
|
||||
Usage: "The host:port of LN daemon.",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "lnddir",
|
||||
Value: defaultLndDir,
|
||||
Usage: "The path to lnd's base directory.",
|
||||
Name: "lnddir",
|
||||
Value: defaultLndDir,
|
||||
Usage: "The path to lnd's base directory.",
|
||||
TakesFile: true,
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "tlscertpath",
|
||||
Value: defaultTLSCertPath,
|
||||
Usage: "The path to lnd's TLS certificate.",
|
||||
Name: "tlscertpath",
|
||||
Value: defaultTLSCertPath,
|
||||
Usage: "The path to lnd's TLS certificate.",
|
||||
TakesFile: true,
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "chain, c",
|
||||
@@ -297,8 +299,9 @@ func main() {
|
||||
Usage: "Disable macaroon authentication.",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "macaroonpath",
|
||||
Usage: "The path to macaroon file.",
|
||||
Name: "macaroonpath",
|
||||
Usage: "The path to macaroon file.",
|
||||
TakesFile: true,
|
||||
},
|
||||
cli.Int64Flag{
|
||||
Name: "macaroontimeout",
|
||||
|
Reference in New Issue
Block a user