From 3e14c6ee9bdc5f4014fdb6b84c90ad422bcd61d8 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 22 Feb 2017 15:54:20 -0800 Subject: [PATCH] features+lnd: add a feature bit for 48-bit state hints --- features.go | 1 + 1 file changed, 1 insertion(+) diff --git a/features.go b/features.go index 5d0c27fe1..e750d0ce0 100644 --- a/features.go +++ b/features.go @@ -10,4 +10,5 @@ var globalFeatures = lnwire.NewFeatureVector([]lnwire.Feature{}) // 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}, })