From f9b0626f8ab202cc5ceffccd24a353e20efd2fff Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 23 May 2017 15:28:05 -0700 Subject: [PATCH] features: add new temporary feature bit to guard new chan close flow --- features.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features.go b/features.go index d79aceeb..29cafb85 100644 --- a/features.go +++ b/features.go @@ -21,4 +21,8 @@ var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{ Name: "dynamic-fees", Flag: lnwire.RequiredFlag, }, + { + Name: "shutdown-close-flow", + Flag: lnwire.RequiredFlag, + }, })