core-lightning/plugins/renepay
Rusty Russell 8dc8416ed7 plugins/renepay: fix gcc-12.3.0 -O3 warning.
Compiler can't tell that we always set have_state[PAY_FLOW_FAILED_FINAL]
when we set this:

```
plugins/renepay/payment.c: In function ‘payment_reconsider’:
plugins/renepay/payment.c:287:25: error: ‘final_error’ may be used uninitialized [-Werror=maybe-uninitialized]
  287 |                         payment_fail(payment, final_error, "%s", final_msg);
      |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/renepay/payment.c:194:30: note: ‘final_error’ was declared here
  194 |         enum jsonrpc_errcode final_error, ecode;
      |                              ^~~~~~~~~~~
plugins/renepay/payment.c:287:25: error: ‘final_msg’ may be used uninitialized [-Werror=maybe-uninitialized]
  287 |                         payment_fail(payment, final_error, "%s", final_msg);
      |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/renepay/payment.c:195:21: note: ‘final_msg’ was declared here
  195 |         const char *final_msg;
      |                     ^~~~~~~~~
```
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2023-08-15 06:21:23 +09:30
..
test plugins/renepay/test: fix access-after-free. 2023-08-15 05:32:22 +09:30
debug.c renepay: an experimental payment plugin 2023-07-31 12:58:56 +09:30
debug.h renepay: an experimental payment plugin 2023-07-31 12:58:56 +09:30
dijkstra.c plugins/renepay/dijkstra: improve API to remove global. 2023-07-31 12:58:56 +09:30
dijkstra.h plugins/renepay/dijkstra: improve API to remove global. 2023-07-31 12:58:56 +09:30
flow.c renepay: more cleanups 2023-07-31 12:58:56 +09:30
flow.h renepay: more cleanups 2023-07-31 12:58:56 +09:30
Makefile renepay: fixups after comments 2023-07-31 12:58:56 +09:30
mcf.c renepay: clean up ARC_ADDITIONAL_BITS. 2023-08-02 11:40:52 +09:30
mcf.h renepay: an experimental payment plugin 2023-07-31 12:58:56 +09:30
pay.c renepay: don't free adg twice after adding gossip. 2023-08-15 05:31:46 +09:30
pay.h renepay: drive *all* progress from termination of struct pay_flow. 2023-08-12 09:41:24 +09:30
pay_flow.c renepay: trivial cleanup to rename flow to pf everywhere. 2023-08-12 09:41:24 +09:30
pay_flow.h renepay: add dummy pf_resuly type to ensure we deal with the flow. 2023-08-12 09:41:24 +09:30
payment.c plugins/renepay: fix gcc-12.3.0 -O3 warning. 2023-08-15 06:21:23 +09:30
payment.h renepay: drive *all* progress from termination of struct pay_flow. 2023-08-12 09:41:24 +09:30
uncertainty_network.c renepay: trivial cleanup to rename flow to pf everywhere. 2023-08-12 09:41:24 +09:30
uncertainty_network.h renepay: don't re-parse bolt11 to get routehints. 2023-08-12 09:41:24 +09:30