mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
lncfg: add new config option for taproot overlay chans
This commit is contained in:
parent
3031f21182
commit
6619646088
3 changed files with 11 additions and 0 deletions
|
@ -31,6 +31,10 @@ type ProtocolOptions struct {
|
||||||
// experimental simple taproot chans commitment type.
|
// experimental simple taproot chans commitment type.
|
||||||
TaprootChans bool `long:"simple-taproot-chans" description:"if set, then lnd will create and accept requests for channels using the simple taproot commitment type"`
|
TaprootChans bool `long:"simple-taproot-chans" description:"if set, then lnd will create and accept requests for channels using the simple taproot commitment type"`
|
||||||
|
|
||||||
|
// TaprootOverlayChans should be set if we want to enable support for
|
||||||
|
// the experimental taproot overlay chan type.
|
||||||
|
TaprootOverlayChans bool `long:"simple-taproot-overlay-chans" description:"if set, then lnd will create and accept requests for channels using the taproot overlay commitment type"`
|
||||||
|
|
||||||
// NoAnchors should be set if we don't want to support opening or accepting
|
// NoAnchors should be set if we don't want to support opening or accepting
|
||||||
// channels having the anchor commitment type.
|
// channels having the anchor commitment type.
|
||||||
NoAnchors bool `long:"no-anchors" description:"disable support for anchor commitments"`
|
NoAnchors bool `long:"no-anchors" description:"disable support for anchor commitments"`
|
||||||
|
|
|
@ -33,6 +33,10 @@ type ProtocolOptions struct {
|
||||||
// experimental simple taproot chans commitment type.
|
// experimental simple taproot chans commitment type.
|
||||||
TaprootChans bool `long:"simple-taproot-chans" description:"if set, then lnd will create and accept requests for channels using the simple taproot commitment type"`
|
TaprootChans bool `long:"simple-taproot-chans" description:"if set, then lnd will create and accept requests for channels using the simple taproot commitment type"`
|
||||||
|
|
||||||
|
// TaprootOverlayChans should be set if we want to enable support for
|
||||||
|
// the experimental taproot overlay chan type.
|
||||||
|
TaprootOverlayChans bool `long:"simple-taproot-overlay-chans" description:"if set, then lnd will create and accept requests for channels using the taproot overlay commitment type"`
|
||||||
|
|
||||||
// Anchors enables anchor commitments.
|
// Anchors enables anchor commitments.
|
||||||
// TODO(halseth): transition itests to anchors instead!
|
// TODO(halseth): transition itests to anchors instead!
|
||||||
Anchors bool `long:"anchors" description:"enable support for anchor commitments"`
|
Anchors bool `long:"anchors" description:"enable support for anchor commitments"`
|
||||||
|
|
|
@ -1321,6 +1321,9 @@
|
||||||
; Set to enable support for the experimental taproot channel type.
|
; Set to enable support for the experimental taproot channel type.
|
||||||
; protocol.simple-taproot-chans=false
|
; protocol.simple-taproot-chans=false
|
||||||
|
|
||||||
|
; Set to enable support for the experimental taproot overlay channel type.
|
||||||
|
; protocol.simple-taproot-overlay-chans=false
|
||||||
|
|
||||||
; Set to disable blinded route forwarding.
|
; Set to disable blinded route forwarding.
|
||||||
; protocol.no-route-blinding=false
|
; protocol.no-route-blinding=false
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue