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-04-17 04:19:03 +03:00
|
|
|
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{
|
|
|
|
{
|
|
|
|
Name: "new-ping-and-funding",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-05-13 00:30:10 +03:00
|
|
|
{
|
|
|
|
Name: "node-ann-feature-addr-swap",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-05-17 05:15:42 +03:00
|
|
|
{
|
|
|
|
Name: "dynamic-fees",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-05-24 01:28:05 +03:00
|
|
|
{
|
|
|
|
Name: "shutdown-close-flow",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-06-17 02:03:57 +03:00
|
|
|
{
|
|
|
|
Name: "sphinx-payload",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-07-07 04:30:06 +03:00
|
|
|
{
|
|
|
|
Name: "htlc-dust-accounting",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-07-15 06:08:55 +03:00
|
|
|
{
|
|
|
|
Name: "encrypted-errors",
|
|
|
|
Flag: lnwire.RequiredFlag,
|
|
|
|
},
|
2017-04-17 04:19:03 +03:00
|
|
|
})
|