init_topo sets topo->root, start_fee_estimate clears * feerate_uninitialized (even if unsuccessful) */
| 33 | /* init_topo sets topo->root, start_fee_estimate clears |
| 34 | * feerate_uninitialized (even if unsuccessful) */ |
| 35 | static void maybe_completed_init(struct chain_topology *topo) |
| 36 | { |
| 37 | if (topo->feerate_uninitialized) |
| 38 | return; |
| 39 | if (!topo->root) |
| 40 | return; |
| 41 | log_debug(topo->ld->log, "io_break: %s", __func__); |
| 42 | io_break(topo); |
| 43 | } |
| 44 | |
| 45 | static void next_topology_timer(struct chain_topology *topo) |
| 46 | { |
no test coverage detected