features+lnd: add a feature bit for 48-bit state hints

This commit is contained in:
Olaoluwa Osuntokun 2017-02-22 15:54:20 -08:00
parent f9b44567ed
commit 3e14c6ee9b
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -10,4 +10,5 @@ var globalFeatures = lnwire.NewFeatureVector([]lnwire.Feature{})
// only affect the protocol between these two nodes. // only affect the protocol between these two nodes.
var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{ var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{
{Name: "lcp-stop-and-wait", Flag: lnwire.RequiredFlag}, {Name: "lcp-stop-and-wait", Flag: lnwire.RequiredFlag},
{Name: "48-bit-state-hint", Flag: lnwire.RequiredFlag},
}) })