Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lightningd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ LIGHTNINGD_SRC := \
lightningd/opt_time.c \
lightningd/options.c \
lightningd/pay.c \
lightningd/payalgo.c \
lightningd/peer_control.c \
lightningd/peer_htlcs.c \
lightningd/subd.c \
Expand Down
2 changes: 1 addition & 1 deletion lightningd/lightningd.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static struct lightningd *new_lightningd(const tal_t *ctx,
ld->alias = NULL;
ld->rgb = NULL;
list_head_init(&ld->connects);
list_head_init(&ld->pay_commands);
list_head_init(&ld->sendpay_commands);
ld->wireaddrs = tal_arr(ld, struct wireaddr, 0);
ld->portnum = DEFAULT_PORT;
timers_init(&ld->timers, time_mono());
Expand Down
4 changes: 2 additions & 2 deletions lightningd/lightningd.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ struct lightningd {

struct wallet *wallet;

/* Outstanding sendpay/pay commands. */
struct list_head pay_commands;
/* Outstanding sendpay commands. */
struct list_head sendpay_commands;

/* Maintained by invoices.c */
struct invoices *invoices;
Expand Down
Loading