From 46f6c6b96e16013f4cd098fdd75b17bb50b505f4 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Tue, 7 Jan 2020 14:31:47 +0100 Subject: [PATCH] lightningd: fix wrong command in response message listpayments was removed in 077ba88b. Suggest listpays instead. Changelog-None --- lightningd/pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/pay.c b/lightningd/pay.c index b97268294..7300e36f1 100644 --- a/lightningd/pay.c +++ b/lightningd/pay.c @@ -235,7 +235,7 @@ json_sendpay_in_progress(struct command *cmd, { struct json_stream *response = json_stream_success(cmd); json_add_string(response, "message", - "Monitor status with listpayments or waitsendpay"); + "Monitor status with listpays or waitsendpay"); json_add_payment_fields(response, payment); return command_success(cmd, response); }