| 19 | #include <wallet/txfilter.h> |
| 20 | |
| 21 | void channel_set_owner(struct channel *channel, struct subd *owner) |
| 22 | { |
| 23 | struct subd *old_owner = channel->owner; |
| 24 | channel->owner = owner; |
| 25 | |
| 26 | if (old_owner) |
| 27 | subd_release_channel(old_owner, channel); |
| 28 | } |
| 29 | |
| 30 | struct htlc_out *channel_has_htlc_out(const struct channel *channel) |
| 31 | { |
no test coverage detected