43a355321f
In this commit, we split off the protocol options into a normal and legacy sub-config. The legacy sub-config protected by a built tag, and will only be populated if thet tag is set. Legacy options now have a `legacy` prefix. So `--protocol.legacyonion` is now `--protocol.onion`, and `--protocol.committweak`, is now `--protocol.legacy.committweak`. We also create a new experimental protocol feature sub-config for newer features that may not yet been fully complete, so they require a build tag.
15 lines
375 B
Go
15 lines
375 B
Go
// +build !dev
|
|
|
|
package lncfg
|
|
|
|
// ExperimentalProtocol is a sub-config that houses any experimental protocol
|
|
// features that also require a build-tag to activate.
|
|
type ExperimentalProtocol struct {
|
|
}
|
|
|
|
// AnchorCommitments returns true if support for the anchor commitment type
|
|
// should be signaled.
|
|
func (l *ExperimentalProtocol) AnchorCommitments() bool {
|
|
return false
|
|
}
|