diff --git a/lightningd/channel_control.c b/lightningd/channel_control.c index 02d0f4b42..18c47e82a 100644 --- a/lightningd/channel_control.c +++ b/lightningd/channel_control.c @@ -773,6 +773,10 @@ is_fundee_should_forget(struct lightningd *ld, if (block_height - channel->first_blocknum < max_funding_unconfirmed) return false; + /* If we've got funds in the channel, don't forget it */ + if (!amount_sat_zero(channel->our_funds)) + return false; + /* Ah forget it! */ return true; }