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

Function splice_command_for_chan

lightningd/channel_control.c:212–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212static struct splice_command *splice_command_for_chan(struct lightningd *ld,
213 struct channel *channel)
214{
215 struct splice_command *cc;
216
217 list_for_each(&ld->splice_commands, cc, list)
218 if (channel == cc->channel)
219 return cc;
220
221 return NULL;
222}
223
224static void handle_splice_funding_error(struct lightningd *ld,
225 struct channel *channel,

Callers 15

handle_splice_abortFunction · 0.85
handle_tx_broadcastFunction · 0.85
check_utxo_blockFunction · 0.85
handle_confirmed_stfuFunction · 0.85
channel_control_errmsgFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected