Convert to hex string of SEC1 encoding */
| 44 | |
| 45 | /* Convert to hex string of SEC1 encoding */ |
| 46 | char *node_id_to_hexstr(const tal_t *ctx, const struct node_id *id) |
| 47 | { |
| 48 | return tal_hexstr(ctx, id->k, sizeof(id->k)); |
| 49 | } |
| 50 | REGISTER_TYPE_TO_STRING(node_id, node_id_to_hexstr); |
| 51 | |
| 52 | /* Convert from hex string of SEC1 encoding */ |
no test coverage detected