| 418 | } |
| 419 | |
| 420 | void json_add_node_id(struct json_stream *response, |
| 421 | const char *fieldname, |
| 422 | const struct node_id *id) |
| 423 | { |
| 424 | json_add_hex(response, fieldname, id->k, sizeof(id->k)); |
| 425 | } |
| 426 | |
| 427 | void json_add_channel_id(struct json_stream *response, |
| 428 | const char *fieldname, |
no test coverage detected