From 2b952af629389fa9ef8dc37da5db89f47c9e0bd0 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 8 Aug 2023 20:21:55 -0700 Subject: [PATCH] feature+lncfg: restore simple- prefix for taproot chans arg --- lncfg/protocol.go | 2 +- lncfg/protocol_integration.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lncfg/protocol.go b/lncfg/protocol.go index e4e5c56e7..4376a145b 100644 --- a/lncfg/protocol.go +++ b/lncfg/protocol.go @@ -24,7 +24,7 @@ type ProtocolOptions struct { // TaprootChans should be set if we want to enable support for the // experimental simple taproot chans commitment type. - TaprootChans bool `long:"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"` // NoAnchors should be set if we don't want to support opening or accepting // channels having the anchor commitment type. diff --git a/lncfg/protocol_integration.go b/lncfg/protocol_integration.go index b758a188d..18e09ca72 100644 --- a/lncfg/protocol_integration.go +++ b/lncfg/protocol_integration.go @@ -26,7 +26,7 @@ type ProtocolOptions struct { // TaprootChans should be set if we want to enable support for the // experimental simple taproot chans commitment type. - TaprootChans bool `long:"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"` // Anchors enables anchor commitments. // TODO(halseth): transition itests to anchors instead!