From b99617312fddc7d3188fe54d9ae4805271be9345 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 23 Feb 2019 15:30:04 +1030 Subject: [PATCH] plugins/pay: use json_ prefix for json command handlers. That makes them intuitive to find with TAGS or grep. Suggested-by: @cdecker Signed-off-by: Rusty Russell --- plugins/pay.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/plugins/pay.c b/plugins/pay.c index 3799f249e..f85dbc6f2 100644 --- a/plugins/pay.c +++ b/plugins/pay.c @@ -848,9 +848,9 @@ static struct pay_status *add_pay_status(struct pay_command *pc, return ps; } -static struct command_result *handle_pay(struct command *cmd, - const char *buf, - const jsmntok_t *params) +static struct command_result *json_pay(struct command *cmd, + const char *buf, + const jsmntok_t *params) { struct amount_msat *msat; struct bolt11 *b11; @@ -1035,9 +1035,9 @@ static void add_attempt(char **ret, tal_append_fmt(ret, "}"); } -static struct command_result *handle_paystatus(struct command *cmd, - const char *buf, - const jsmntok_t *params) +static struct command_result *json_paystatus(struct command *cmd, + const char *buf, + const jsmntok_t *params) { struct pay_status *ps; const char *b11str; @@ -1156,9 +1156,9 @@ static struct command_result *listsendpays_done(struct command *cmd, return command_success(cmd, ret); } -static struct command_result *handle_listpays(struct command *cmd, - const char *buf, - const jsmntok_t *params) +static struct command_result *json_listpays(struct command *cmd, + const char *buf, + const jsmntok_t *params) { const char *b11str, *paramstr; @@ -1196,17 +1196,17 @@ static const struct plugin_command commands[] = { { "pay", "Send payment specified by {bolt11} with {amount}", "Try to send a payment, retrying {retry_for} seconds before giving up", - handle_pay + json_pay }, { "paystatus", "Detail status of attempts to pay {bolt11}, or all", "Covers both old payments and current ones.", - handle_paystatus + json_paystatus }, { "listpays", "List result of payment {bolt11}, or all", "Covers old payments (failed and succeeded) and current ones.", - handle_listpays + json_listpays } };