| 471 | } |
| 472 | |
| 473 | static void start_prune_timer(struct gossmap_manage *gm) |
| 474 | { |
| 475 | /* Schedule next run now */ |
| 476 | gm->prune_timer = new_reltimer(&gm->daemon->timers, gm, |
| 477 | time_from_sec(GOSSIP_PRUNE_INTERVAL(gm->daemon->dev_fast_gossip_prune)/4), |
| 478 | prune_network, gm); |
| 479 | } |
| 480 | |
| 481 | static void reprocess_queued_msgs(struct gossmap_manage *gm); |
| 482 |
no test coverage detected