MCPcopy Create free account
hub / github.com/ElementsProject/lightning / channel_watch_funding

Function channel_watch_funding

lightningd/peer_control.c:1872–1881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1870}
1871
1872void 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
1883static void channel_watch_inflight(struct lightningd *ld,
1884 struct channel *channel,

Callers 6

json_openchannel_signedFunction · 0.85
setup_peerFunction · 0.85
opening_funder_finishedFunction · 0.85
opening_fundee_finishedFunction · 0.85
json_recoverchannelFunction · 0.85

Calls 3

watch_txidFunction · 0.70
watch_txoFunction · 0.70

Tested by

no test coverage detected