lncli: remove requirement for invoice value argument
This commit is contained in:
parent
28f782b156
commit
78b9dc4b96
@ -1169,8 +1169,9 @@ var addInvoiceCommand = cli.Command{
|
||||
Description: `
|
||||
Add a new invoice, expressing intent for a future payment.
|
||||
|
||||
The number of satoshis in this invoice is necessary for the creation,
|
||||
the remaining parameters are optional.`,
|
||||
Invoices without an amount can be created by not supplying any
|
||||
parameters or providing an amount of 0. These invoices allow the payee
|
||||
to specify the amount of satoshis they wish to send.`,
|
||||
ArgsUsage: "value preimage",
|
||||
Flags: []cli.Flag{
|
||||
cli.StringFlag{
|
||||
@ -1239,8 +1240,6 @@ func addInvoice(ctx *cli.Context) error {
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode amt argument: %v", err)
|
||||
}
|
||||
default:
|
||||
return fmt.Errorf("amt argument missing")
|
||||
}
|
||||
|
||||
switch {
|
||||
|
Loading…
Reference in New Issue
Block a user