File tree Expand file tree Collapse file tree 4 files changed +451
-1
lines changed Expand file tree Collapse file tree 4 files changed +451
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ PLUGIN_RENEPAY_SRC := \
10
10
plugins/renepay/routebuilder.c \
11
11
plugins/renepay/routetracker.c \
12
12
plugins/renepay/routefail.c \
13
+ plugins/renepay/sendpay.c \
13
14
plugins/renepay/uncertainty.c \
14
15
plugins/renepay/mods.c \
15
16
plugins/renepay/errorcodes.c \
@@ -29,6 +30,7 @@ PLUGIN_RENEPAY_HDRS := \
29
30
plugins/renepay/routebuilder.h \
30
31
plugins/renepay/routetracker.h \
31
32
plugins/renepay/routefail.h \
33
+ plugins/renepay/sendpay.h \
32
34
plugins/renepay/uncertainty.h \
33
35
plugins/renepay/mods.h \
34
36
plugins/renepay/errorcodes.h \
@@ -43,6 +45,6 @@ PLUGIN_ALL_HEADER += $(PLUGIN_RENEPAY_HDRS)
43
45
# Make all plugins depend on all plugin headers, for simplicity.
44
46
$(PLUGIN_RENEPAY_OBJS ) : $(PLUGIN_RENEPAY_HDRS )
45
47
46
- plugins/cln-renepay : $(PLUGIN_RENEPAY_OBJS ) $(PLUGIN_LIB_OBJS ) $(PLUGIN_COMMON_OBJS ) $(JSMN_OBJS ) $(CCAN_OBJS ) bitcoin/chainparams.o common/gossmap.o common/gossmods_listpeerchannels.o common/fp16.o common/dijkstra.o common/bolt12.o common/bolt12_merkle.o common/sciddir_or_pubkey.o wire/bolt12_wiregen.o wire/onion_wiregen.o
48
+ plugins/cln-renepay : $(PLUGIN_RENEPAY_OBJS ) $(PLUGIN_LIB_OBJS ) $(PLUGIN_COMMON_OBJS ) $(JSMN_OBJS ) $(CCAN_OBJS ) bitcoin/chainparams.o common/gossmap.o common/gossmods_listpeerchannels.o common/fp16.o common/dijkstra.o common/bolt12.o common/bolt12_merkle.o common/sciddir_or_pubkey.o wire/bolt12_wiregen.o wire/onion_wiregen.o common/sphinx.o common/onion_encode.o common/hmac.o common/onionreply.o
47
49
48
50
include plugins/renepay/test/Makefile
Original file line number Diff line number Diff line change 17
17
#include <plugins/renepay/mods.h>
18
18
#include <plugins/renepay/payplugin.h>
19
19
#include <plugins/renepay/routetracker.h>
20
+ #include <plugins/renepay/sendpay.h>
20
21
#include <stdio.h>
21
22
22
23
// TODO(eduardo): notice that pending attempts performed with another
@@ -458,6 +459,10 @@ static const struct plugin_command commands[] = {
458
459
"renepay" ,
459
460
json_pay
460
461
},
462
+ {
463
+ "renesendpay" ,
464
+ json_renesendpay
465
+ },
461
466
};
462
467
463
468
static const struct plugin_notification notifications [] = {
You can’t perform that action at this time.
0 commit comments