Skip to content

Commit

Permalink
plugins/pay: use json_ prefix for json command handlers.
Browse files Browse the repository at this point in the history
That makes them intuitive to find with TAGS or grep.

Suggested-by: @cdecker
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
rustyrussell committed Feb 23, 2019
1 parent 6a66454 commit f516d94
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions plugins/pay.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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
}
};

Expand Down

0 comments on commit f516d94

Please sign in to comment.