| 481 | static void reprocess_queued_msgs(struct gossmap_manage *gm); |
| 482 | |
| 483 | static void gossmap_logcb(struct gossmap_manage *gm, |
| 484 | enum log_level level, |
| 485 | const char *fmt, |
| 486 | ...) |
| 487 | { |
| 488 | va_list ap; |
| 489 | |
| 490 | va_start(ap, fmt); |
| 491 | status_vfmt(level, NULL, fmt, ap); |
| 492 | va_end(ap); |
| 493 | } |
| 494 | |
| 495 | static void gossmap_add_dying_chan(struct short_channel_id scid, |
| 496 | u32 blockheight, |
nothing calls this directly
no test coverage detected