From 80b298a15faf0c9c4a475541713735e81f01e44c Mon Sep 17 00:00:00 2001 From: Felix Date: Tue, 8 May 2018 16:08:43 +0300 Subject: [PATCH] help - add preimage to param list --- lightningd/invoice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/invoice.c b/lightningd/invoice.c index 6f4253a40..a0feaea20 100644 --- a/lightningd/invoice.c +++ b/lightningd/invoice.c @@ -359,7 +359,7 @@ static void json_invoice(struct command *cmd, static const struct json_command invoice_command = { "invoice", json_invoice, - "Create an invoice for {msatoshi} with {label} and {description} with optional {expiry} seconds (default 1 hour)" + "Create an invoice for {msatoshi} with {label} and {description} with optional {expiry} seconds (default 1 hour) and optional {preimage} (default autogenerated)" }; AUTODATA(json_command, &invoice_command);