| 425 | } |
| 426 | |
| 427 | void json_add_channel_id(struct json_stream *response, |
| 428 | const char *fieldname, |
| 429 | const struct channel_id *cid) |
| 430 | { |
| 431 | json_add_hex(response, fieldname, cid->id, sizeof(cid->id)); |
| 432 | } |
| 433 | |
| 434 | void json_add_pubkey(struct json_stream *response, |
| 435 | const char *fieldname, |
no test coverage detected