| 210 | } |
| 211 | |
| 212 | static 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 | |
| 224 | static void handle_splice_funding_error(struct lightningd *ld, |
| 225 | struct channel *channel, |
no outgoing calls
no test coverage detected