docs: fix simple-taproot-channels typo [skip ci] (#7926)

This commit is contained in:
Jamal James 2023-08-25 17:48:37 -05:00 committed by GitHub
parent 15d2ff0c4d
commit cbb4c27a44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
)

View File

@ -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.