From 2d8304f176c83c1e814d9acb3018d6125b29c9cb Mon Sep 17 00:00:00 2001 From: ZmnSCPxj Date: Fri, 12 Jan 2018 14:43:25 +0000 Subject: [PATCH] pay: Change online help of 'listinvoices' to use 'msatoshi' as per actual response returned. --- lightningd/pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/pay.c b/lightningd/pay.c index 4867a96fb..ebcef51cb 100644 --- a/lightningd/pay.c +++ b/lightningd/pay.c @@ -530,6 +530,6 @@ static const struct json_command listpayments_command = { "listpayments", json_listpayments, "Get a list of incoming and outgoing payments", - "Returns a list of payments with {direction}, {payment_hash}, {destination} if outgoing and {amount}" + "Returns a list of payments with {direction}, {payment_hash}, {destination} if outgoing and {msatoshi}" }; AUTODATA(json_command, &listpayments_command);