Browse Source

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 <rusty@rustcorp.com.au>
pr-2391
Rusty Russell 6 years ago
parent
commit
b99617312f
  1. 24
      plugins/pay.c

24
plugins/pay.c

@ -848,9 +848,9 @@ static struct pay_status *add_pay_status(struct pay_command *pc,
return ps; return ps;
} }
static struct command_result *handle_pay(struct command *cmd, static struct command_result *json_pay(struct command *cmd,
const char *buf, const char *buf,
const jsmntok_t *params) const jsmntok_t *params)
{ {
struct amount_msat *msat; struct amount_msat *msat;
struct bolt11 *b11; struct bolt11 *b11;
@ -1035,9 +1035,9 @@ static void add_attempt(char **ret,
tal_append_fmt(ret, "}"); tal_append_fmt(ret, "}");
} }
static struct command_result *handle_paystatus(struct command *cmd, static struct command_result *json_paystatus(struct command *cmd,
const char *buf, const char *buf,
const jsmntok_t *params) const jsmntok_t *params)
{ {
struct pay_status *ps; struct pay_status *ps;
const char *b11str; const char *b11str;
@ -1156,9 +1156,9 @@ static struct command_result *listsendpays_done(struct command *cmd,
return command_success(cmd, ret); return command_success(cmd, ret);
} }
static struct command_result *handle_listpays(struct command *cmd, static struct command_result *json_listpays(struct command *cmd,
const char *buf, const char *buf,
const jsmntok_t *params) const jsmntok_t *params)
{ {
const char *b11str, *paramstr; const char *b11str, *paramstr;
@ -1196,17 +1196,17 @@ static const struct plugin_command commands[] = { {
"pay", "pay",
"Send payment specified by {bolt11} with {amount}", "Send payment specified by {bolt11} with {amount}",
"Try to send a payment, retrying {retry_for} seconds before giving up", "Try to send a payment, retrying {retry_for} seconds before giving up",
handle_pay json_pay
}, { }, {
"paystatus", "paystatus",
"Detail status of attempts to pay {bolt11}, or all", "Detail status of attempts to pay {bolt11}, or all",
"Covers both old payments and current ones.", "Covers both old payments and current ones.",
handle_paystatus json_paystatus
}, { }, {
"listpays", "listpays",
"List result of payment {bolt11}, or all", "List result of payment {bolt11}, or all",
"Covers old payments (failed and succeeded) and current ones.", "Covers old payments (failed and succeeded) and current ones.",
handle_listpays json_listpays
} }
}; };

Loading…
Cancel
Save