| 34 | |
| 35 | static struct node_id nodeidx_id(const ptrint_t *pidx); |
| 36 | static bool nodeidx_eq_id(const ptrint_t *pidx, const struct node_id id) |
| 37 | { |
| 38 | struct node_id pidxid = nodeidx_id(pidx); |
| 39 | return node_id_eq(&pidxid, &id); |
| 40 | } |
| 41 | /* You need to spend sats to create a channel to advertize your nodeid, |
| 42 | * so creating clashes is not free: we can be lazy! */ |
| 43 | static size_t nodeid_hash(const struct node_id id) |
nothing calls this directly
no test coverage detected