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
multi: wire taproot RBF support throughout the stack
In this commit we, integrate the taproot RBF cooperative close
functionality throughout the LND stack. This includes updating
protocol configuration and peer connection handling to support
the new taproot closing flow.
The changes wire through the taproot channel detection, nonce
exchange during shutdown, and proper handling of the enhanced
wire protocol messages in the peer layer. This completes the
integration of taproot RBF cooperative close functionality,
providing a complete alternate closing path for taproot channels
that leverages MuSig2 signatures and implements proper nonce
rotation for secure RBF scenarios.
Copy file name to clipboardExpand all lines: lncfg/protocol.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ type ProtocolOptions struct {
37
37
38
38
// RbfCoopClose should be set if we want to signal that we support for
39
39
// the new experimental RBF coop close feature.
40
-
RbfCoopClosebool`long:"rbf-coop-close" description:"if set, then lnd will signal that it supports the new RBF based coop close protocol, taproot channels are not supported"`
40
+
RbfCoopClosebool`long:"rbf-coop-close" description:"if set, then lnd will signal that it supports the new RBF based coop close protocol"`
41
41
42
42
// NoAnchors should be set if we don't want to support opening or accepting
0 commit comments