Skip to content

Commit 9246d5c

Browse files
committed
Merge branch '0-18-4-branch-rc1-9288' into 0-18-4-branch-rc1
2 parents f9d876e + 117a145 commit 9246d5c

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

chanacceptor/rpcacceptor.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,30 @@ func (r *RPCAcceptor) sendAcceptRequests(errChan chan error,
356356
):
357357
commitmentType = lnrpc.CommitmentType_SIMPLE_TAPROOT
358358

359+
case channelFeatures.OnlyContains(
360+
lnwire.SimpleTaprootOverlayChansRequired,
361+
lnwire.ZeroConfRequired,
362+
lnwire.ScidAliasRequired,
363+
):
364+
commitmentType = lnrpc.CommitmentType_SIMPLE_TAPROOT_OVERLAY
365+
366+
case channelFeatures.OnlyContains(
367+
lnwire.SimpleTaprootOverlayChansRequired,
368+
lnwire.ZeroConfRequired,
369+
):
370+
commitmentType = lnrpc.CommitmentType_SIMPLE_TAPROOT_OVERLAY
371+
372+
case channelFeatures.OnlyContains(
373+
lnwire.SimpleTaprootOverlayChansRequired,
374+
lnwire.ScidAliasRequired,
375+
):
376+
commitmentType = lnrpc.CommitmentType_SIMPLE_TAPROOT_OVERLAY
377+
378+
case channelFeatures.OnlyContains(
379+
lnwire.SimpleTaprootOverlayChansRequired,
380+
):
381+
commitmentType = lnrpc.CommitmentType_SIMPLE_TAPROOT_OVERLAY
382+
359383
case channelFeatures.OnlyContains(
360384
lnwire.StaticRemoteKeyRequired,
361385
):

docs/release-notes/release-notes-0.18.4.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ types in a series of changes:
3838
* https://github.com/lightningnetwork/lnd/pull/9095
3939
* https://github.com/lightningnetwork/lnd/pull/8960
4040
* https://github.com/lightningnetwork/lnd/pull/9194
41+
* https://github.com/lightningnetwork/lnd/pull/9288
4142

4243
## Functional Enhancements
4344

0 commit comments

Comments
 (0)