| 392 | } |
| 393 | |
| 394 | void json_add_node_id(struct json_stream *response, |
| 395 | const char *fieldname, |
| 396 | const struct node_id *id) |
| 397 | { |
| 398 | json_add_hex(response, fieldname, id->k, sizeof(id->k)); |
| 399 | } |
| 400 | |
| 401 | void json_add_channel_id(struct json_stream *response, |
| 402 | const char *fieldname, |
no test coverage detected