lnd: reset features as we no longer need to partition dated lnd nodes

This commit is contained in:
Olaoluwa Osuntokun 2017-08-22 00:32:17 -07:00
parent 1c22242a41
commit 65526ba071
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 6 additions and 28 deletions

View File

@ -8,37 +8,15 @@ 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: "new-ping-and-funding",
Flag: lnwire.RequiredFlag,
Name: "filler",
Flag: lnwire.OptionalFlag,
},
{
Name: "node-ann-feature-addr-swap",
Flag: lnwire.RequiredFlag,
},
{
Name: "dynamic-fees",
Flag: lnwire.RequiredFlag,
},
{
Name: "shutdown-close-flow",
Flag: lnwire.RequiredFlag,
},
{
Name: "sphinx-payload",
Flag: lnwire.RequiredFlag,
},
{
Name: "htlc-dust-accounting",
Flag: lnwire.RequiredFlag,
},
{
Name: "encrypted-errors",
Flag: lnwire.RequiredFlag,
},
{
Name: "new-funding-and-commitment",
Flag: lnwire.RequiredFlag,
Name: "announce-graph",
Flag: lnwire.OptionalFlag,
},
})