From 4311df3170eeb2dbbc1d4b07d1ab29d70cc7046e Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 4 Apr 2017 14:14:36 +0200 Subject: [PATCH] features: purge all prior temporary feature bits 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. --- features.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/features.go b/features.go index 99529a89..bdc1eee8 100644 --- a/features.go +++ b/features.go @@ -8,8 +8,4 @@ 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{ - {Name: "lcp-stop-and-wait", Flag: lnwire.RequiredFlag}, - {Name: "48-bit-state-hint", Flag: lnwire.RequiredFlag}, - {Name: "shachain", Flag: lnwire.RequiredFlag}, -}) +var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})