| 118 | |
| 119 | |
| 120 | void kill_uncommitted_channel(struct uncommitted_channel *uc, |
| 121 | const char *why) |
| 122 | { |
| 123 | log_info(uc->log, "Killing opening daemon: %s", why); |
| 124 | |
| 125 | uncommitted_channel_disconnect(uc, LOG_INFORM, why); |
| 126 | tal_free(uc); |
| 127 | } |
| 128 | |
| 129 | void channel_config(struct lightningd *ld, |
| 130 | struct channel_config *ours, |
no test coverage detected