| 128 | |
| 129 | |
| 130 | void kill_uncommitted_channel(struct uncommitted_channel *uc, |
| 131 | const char *why) |
| 132 | { |
| 133 | log_info(uc->log, "Killing opening daemon: %s", why); |
| 134 | |
| 135 | uncommitted_channel_disconnect(uc, LOG_INFORM, why); |
| 136 | tal_free(uc); |
| 137 | } |
| 138 | |
| 139 | void channel_config(struct lightningd *ld, |
| 140 | struct channel_config *ours, |
no test coverage detected