4311df3170
This commit removes all the prior temporary feature bits which were only added in order to allow clients to gracefully continue functioning in the midst of all the breaking changes that were landing in the master branch of the project.
12 lines
420 B
Go
12 lines
420 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.
|
|
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})
|