Skip to content

Commit 65ca634

Browse files
committed
plugin: Fix misspelled COMPAT_V090 compile guards
1 parent 2146a54 commit 65ca634

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/pay.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,7 @@ static struct pay_status *add_pay_status(struct pay_command *pc,
12711271
return ps;
12721272
}
12731273

1274-
#ifndef COMPAT_090
1274+
#ifndef COMPAT_V090
12751275
UNUSED
12761276
#endif
12771277
static struct command_result *json_pay(struct command *cmd,
@@ -1842,10 +1842,10 @@ static void init(struct plugin *p,
18421842

18431843
struct payment_modifier *paymod_mods[] = {
18441844
&local_channel_hints_pay_mod,
1845-
&directpay_pay_mod,
1846-
&shadowroute_pay_mod,
18471845
&exemptfee_pay_mod,
1846+
&directpay_pay_mod,
18481847
&presplit_pay_mod,
1848+
&shadowroute_pay_mod,
18491849
&routehints_pay_mod,
18501850
&waitblockheight_pay_mod,
18511851
&retry_pay_mod,
@@ -1973,7 +1973,7 @@ static struct command_result *json_paymod(struct command *cmd,
19731973
}
19741974

19751975
static const struct plugin_command commands[] = {
1976-
#ifdef COMPAT_v090
1976+
#ifdef COMPAT_V090
19771977
{
19781978
"legacypay",
19791979
"payment",

0 commit comments

Comments
 (0)