2017-02-16 15:34:49 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
|
2017-02-17 17:28:11 +03:00
|
|
|
// globalFeatures feature vector which affects HTLCs and thus are also
|
|
|
|
// advertised to other nodes.
|
|
|
|
var globalFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})
|
2017-02-16 15:34:49 +03:00
|
|
|
|
2017-02-17 17:28:11 +03:00
|
|
|
// localFeatures is an feature vector which represent the features which
|
|
|
|
// only affect the protocol between these two nodes.
|
2017-02-21 12:49:51 +03:00
|
|
|
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{
|
2017-02-23 01:49:04 +03:00
|
|
|
{Name: "lcp-stop-and-wait", Flag: lnwire.RequiredFlag},
|
2017-02-23 02:54:20 +03:00
|
|
|
{Name: "48-bit-state-hint", Flag: lnwire.RequiredFlag},
|
2017-02-22 14:27:20 +03:00
|
|
|
{Name: "shachain", Flag: lnwire.RequiredFlag},
|
2017-02-21 12:49:51 +03:00
|
|
|
})
|