| 399 | } |
| 400 | |
| 401 | void json_add_channel_id(struct json_stream *response, |
| 402 | const char *fieldname, |
| 403 | const struct channel_id *cid) |
| 404 | { |
| 405 | json_add_hex(response, fieldname, cid->id, sizeof(cid->id)); |
| 406 | } |
| 407 | |
| 408 | void json_add_pubkey(struct json_stream *response, |
| 409 | const char *fieldname, |
no test coverage detected