From 628c5cd63aab34cd58a0a7816f3a1ec40bf971e1 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 30 Jul 2017 20:27:50 -0700 Subject: [PATCH] features: add a new feature bit for recent changes --- features.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features.go b/features.go index 408e8cca..52df5b8f 100644 --- a/features.go +++ b/features.go @@ -37,4 +37,8 @@ var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{ Name: "encrypted-errors", Flag: lnwire.RequiredFlag, }, + { + Name: "new-funding-and-commitment", + Flag: lnwire.RequiredFlag, + }, })