mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-01 10:11:11 +02:00
cfg: rename legacyprotocol to protocol
Since we are also going to use it for experimental new features.
This commit is contained in:
@@ -2,21 +2,21 @@
|
||||
|
||||
package lncfg
|
||||
|
||||
// LegacyProtocol is a struct that we use to be able to test backwards
|
||||
// ProtocolOptions is a struct that we use to be able to test backwards
|
||||
// compatibility of protocol additions, while defaulting to the latest within
|
||||
// lnd.
|
||||
type LegacyProtocol struct {
|
||||
// lnd, or to enable experimental protocol changes.
|
||||
type ProtocolOptions struct {
|
||||
}
|
||||
|
||||
// LegacyOnion returns true if the old legacy onion format should be used when
|
||||
// we're an intermediate or final hop. This controls if we set the
|
||||
// TLVOnionPayloadOptional bit or not.
|
||||
func (l *LegacyProtocol) LegacyOnion() bool {
|
||||
func (l *ProtocolOptions) LegacyOnion() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// LegacyOnion returns true if the old commitment format should be used for new
|
||||
// funded channels.
|
||||
func (l *LegacyProtocol) LegacyCommitment() bool {
|
||||
// LegacyCommitment returns true if the old commitment format should be used
|
||||
// for new funded channels.
|
||||
func (l *ProtocolOptions) LegacyCommitment() bool {
|
||||
return false
|
||||
}
|
||||
|
@@ -2,14 +2,14 @@
|
||||
|
||||
package lncfg
|
||||
|
||||
// LegacyProtocol is a struct that we use to be able to test backwards
|
||||
// ProtocolOptions is a struct that we use to be able to test backwards
|
||||
// compatibility of protocol additions, while defaulting to the latest within
|
||||
// lnd.
|
||||
type LegacyProtocol struct {
|
||||
// Onion if set to true, then we won't signal TLVOnionPayloadOptional.
|
||||
// As a result, nodes that include us in the route won't use the new
|
||||
// modern onion framing.
|
||||
Onion bool `long:"onion" description:"force node to not advertise the new modern TLV onion format"`
|
||||
// lnd, or to enable experimental protocol changes.
|
||||
type ProtocolOptions struct {
|
||||
// LegacyOnionFormat if set to true, then we won't signal
|
||||
// TLVOnionPayloadOptional. As a result, nodes that include us in the
|
||||
// route won't use the new modern onion framing.
|
||||
LegacyOnionFormat bool `long:"legacyonion" description:"force node to not advertise the new modern TLV onion format"`
|
||||
|
||||
// CommitmentTweak guards if we should use the old legacy commitment
|
||||
// protocol, or the newer variant that doesn't have a tweak for the
|
||||
@@ -21,12 +21,12 @@ type LegacyProtocol struct {
|
||||
// LegacyOnion returns true if the old legacy onion format should be used when
|
||||
// we're an intermediate or final hop. This controls if we set the
|
||||
// TLVOnionPayloadOptional bit or not.
|
||||
func (l *LegacyProtocol) LegacyOnion() bool {
|
||||
return l.Onion
|
||||
func (l *ProtocolOptions) LegacyOnion() bool {
|
||||
return l.LegacyOnionFormat
|
||||
}
|
||||
|
||||
// LegacyOnion returns true if the old commitment format should be used for new
|
||||
// funded channels.
|
||||
func (l *LegacyProtocol) LegacyCommitment() bool {
|
||||
// LegacyCommitment returns true if the old commitment format should be used
|
||||
// for new funded channels.
|
||||
func (l *ProtocolOptions) LegacyCommitment() bool {
|
||||
return l.CommitmentTweak
|
||||
}
|
||||
|
Reference in New Issue
Block a user