| 1859 | } |
| 1860 | |
| 1861 | void channel_watch_wrong_funding(struct lightningd *ld, struct channel *channel) |
| 1862 | { |
| 1863 | /* Watch the "wrong" funding too, in case we spend it. */ |
| 1864 | if (channel->shutdown_wrong_funding) { |
| 1865 | /* FIXME: Remove arg from cb? */ |
| 1866 | watch_txo(channel, ld->topology, channel, |
| 1867 | channel->shutdown_wrong_funding, |
| 1868 | funding_spent); |
| 1869 | } |
| 1870 | } |
| 1871 | |
| 1872 | void channel_watch_funding(struct lightningd *ld, struct channel *channel) |
| 1873 | { |
no test coverage detected