| 43 | } |
| 44 | |
| 45 | static void next_topology_timer(struct chain_topology *topo) |
| 46 | { |
| 47 | assert(!topo->extend_timer); |
| 48 | topo->extend_timer = new_reltimer(topo->ld->timers, topo, |
| 49 | time_from_sec(topo->poll_seconds), |
| 50 | try_extend_tip, topo); |
| 51 | } |
| 52 | |
| 53 | static bool we_broadcast(const struct chain_topology *topo, |
| 54 | const struct bitcoin_txid *txid) |
no test coverage detected