Create space at end of local map, return offset it was added at. */
| 1028 | |
| 1029 | /* Create space at end of local map, return offset it was added at. */ |
| 1030 | static size_t insert_local_space(u8 **localspace, size_t msglen) |
| 1031 | { |
| 1032 | size_t oldlen = tal_bytelen(*localspace); |
| 1033 | |
| 1034 | tal_resize(localspace, oldlen + msglen); |
| 1035 | return oldlen; |
| 1036 | } |
| 1037 | |
| 1038 | static struct localmod *find_localmod(struct gossmap_localmods *localmods, |
| 1039 | struct short_channel_id scid) |
no test coverage detected