From cbb4c27a444103eb27afecce47a97df2e6d738db Mon Sep 17 00:00:00 2001 From: Jamal James <1356600+jamaljsr@users.noreply.github.com> Date: Fri, 25 Aug 2023 17:48:37 -0500 Subject: [PATCH] docs: fix simple-taproot-channels typo [skip ci] (#7926) --- channeldb/channel.go | 2 +- docs/release-notes/release-notes-0.17.0.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/channeldb/channel.go b/channeldb/channel.go index a933b4eed..67a32379e 100644 --- a/channeldb/channel.go +++ b/channeldb/channel.go @@ -306,7 +306,7 @@ const ( // negotiated during the lifetime of this channel. ScidAliasFeatureBit ChannelType = 1 << 9 - // SimpleTaprootFeatureBit indicates that the simple-taproot-channels + // SimpleTaprootFeatureBit indicates that the simple-taproot-chans // feature bit was negotiated during the lifetime of the channel. SimpleTaprootFeatureBit ChannelType = 1 << 10 ) diff --git a/docs/release-notes/release-notes-0.17.0.md b/docs/release-notes/release-notes-0.17.0.md index 9ece76a40..c76a46835 100644 --- a/docs/release-notes/release-notes-0.17.0.md +++ b/docs/release-notes/release-notes-0.17.0.md @@ -68,7 +68,7 @@ * This release marks the first release that includes the new [musig2-based taproot channel type](https://github.com/lightningnetwork/lnd/pull/7904). As new protocol feature hasn't yet been finalized, users must enable taproot - channels with a new flag: `--protocol.simple-taproot-channels`. Once enabled, + channels with a new flag: `--protocol.simple-taproot-chans`. Once enabled, user MUST use the explicit channel type to request the taproot channel type (pending support by the remote peer). For `lncli openchannel`, `--channel_type=taproot` should be used.