Called on timeout. */
| 2367 | } |
| 2368 | /* Called on timeout. */ |
| 2369 | static void |
| 2370 | timeout_waitblockheight_waiter(struct waitblockheight_waiter *w) |
| 2371 | { |
| 2372 | list_del(&w->list); |
| 2373 | w->removed = true; |
| 2374 | tal_steal(tmpctx, w); |
| 2375 | was_pending(command_fail(w->cmd, WAIT_TIMEOUT, |
| 2376 | "Timed out.")); |
| 2377 | } |
| 2378 | /* Called by lightningd at each new block. */ |
| 2379 | void waitblockheight_notify_new_block(struct lightningd *ld, |
| 2380 | u32 block_height) |
nothing calls this directly
no test coverage detected