| 488 | } |
| 489 | |
| 490 | static struct gossmap *get_gossmap(struct plugin *plugin) |
| 491 | { |
| 492 | if (!global_gossmap) |
| 493 | init_gossmap(plugin); |
| 494 | else |
| 495 | gossmap_refresh(global_gossmap, NULL); |
| 496 | return global_gossmap; |
| 497 | } |
| 498 | |
| 499 | static struct command_result *param_offer(struct command *cmd, |
| 500 | const char *name, |
no test coverage detected