| 477 | } |
| 478 | |
| 479 | static void add_invoice_del_fields(struct out_req *req, |
| 480 | const char *buf, |
| 481 | const jsmntok_t *t) |
| 482 | { |
| 483 | const jsmntok_t *label = json_get_member(buf, t, "label"); |
| 484 | const jsmntok_t *status = json_get_member(buf, t, "status"); |
| 485 | |
| 486 | json_add_tok(req->js, "label", label, buf); |
| 487 | json_add_tok(req->js, "status", status, buf); |
| 488 | } |
| 489 | |
| 490 | static void add_sendpays_del_fields(struct out_req *req, |
| 491 | const char *buf, |
nothing calls this directly
no test coverage detected