| 1870 | } |
| 1871 | |
| 1872 | void channel_watch_funding(struct lightningd *ld, struct channel *channel) |
| 1873 | { |
| 1874 | /* FIXME: Remove arg from cb? */ |
| 1875 | watch_txid(channel, ld->topology, channel, |
| 1876 | &channel->funding.txid, funding_depth_cb); |
| 1877 | watch_txo(channel, ld->topology, channel, |
| 1878 | &channel->funding, |
| 1879 | funding_spent); |
| 1880 | channel_watch_wrong_funding(ld, channel); |
| 1881 | } |
| 1882 | |
| 1883 | static void channel_watch_inflight(struct lightningd *ld, |
| 1884 | struct channel *channel, |
no test coverage detected