2017-02-16 13:34:49 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
|
2017-02-17 15:28:11 +01:00
|
|
|
// globalFeatures feature vector which affects HTLCs and thus are also
|
|
|
|
// advertised to other nodes.
|
|
|
|
var globalFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})
|
2017-02-16 13:34:49 +01:00
|
|
|
|
2017-02-17 15:28:11 +01:00
|
|
|
// localFeatures is an feature vector which represent the features which
|
|
|
|
// only affect the protocol between these two nodes.
|
2017-08-22 09:32:17 +02:00
|
|
|
//
|
|
|
|
// TODO(roasbeef): update to only have one, add a dummy vector?
|
2017-04-17 03:19:03 +02:00
|
|
|
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{
|
|
|
|
{
|
2017-08-22 09:32:17 +02:00
|
|
|
Name: "filler",
|
|
|
|
Flag: lnwire.OptionalFlag,
|
2017-04-17 03:19:03 +02:00
|
|
|
},
|
2017-05-12 23:30:10 +02:00
|
|
|
{
|
2017-08-22 09:32:17 +02:00
|
|
|
Name: "announce-graph",
|
|
|
|
Flag: lnwire.OptionalFlag,
|
2017-07-31 05:27:50 +02:00
|
|
|
},
|
2017-04-17 03:19:03 +02:00
|
|
|
})
|