You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See lightning/bolts#728
Allow a funder to dip into its channel reserve to pay the increased
commit tx fee for one incoming HTLC.
This prevents being stuck with an unusable channel.
Copy file name to clipboardexpand all lines: eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala
+7-3
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,8 @@ object Commitments {
190
190
} elseif (missingForReceiver <0.msat) {
191
191
if (commitments.localParams.isFunder) {
192
192
// receiver is fundee; it is ok if it can't maintain its channel_reserve for now, as long as its balance is increasing, which is the case if it is receiving a payment
// receiver is fundee; it is ok if it can't maintain its channel_reserve for now, as long as its balance is increasing, which is the case if it is receiving a payment
// alice should be allowed to dip into her reserve to pay for the commit tx fee increase (see https://github.com/lightningnetwork/lightning-rfc/issues/728)
0 commit comments