23 lines
604 B
Go
23 lines
604 B
Go
package main
|
|
|
|
import "github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
// globalFeatures feature vector which affects HTLCs and thus are also
|
|
// advertised to other nodes.
|
|
var globalFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})
|
|
|
|
// localFeatures is an feature vector which represent the features which
|
|
// only affect the protocol between these two nodes.
|
|
//
|
|
// TODO(roasbeef): update to only have one, add a dummy vector?
|
|
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{
|
|
{
|
|
Name: "filler",
|
|
Flag: lnwire.OptionalFlag,
|
|
},
|
|
{
|
|
Name: "announce-graph",
|
|
Flag: lnwire.OptionalFlag,
|
|
},
|
|
})
|