From 906771ba16c6e62bd27756d39cef86e82a16abf8 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 6 Jul 2017 18:30:06 -0700 Subject: [PATCH] features: add temporary feature for proper HTLC dust accounting --- features.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features.go b/features.go index 0adf993c..c7a0c0b2 100644 --- a/features.go +++ b/features.go @@ -29,4 +29,8 @@ var localFeatures = lnwire.NewFeatureVector([]lnwire.Feature{ Name: "sphinx-payload", Flag: lnwire.RequiredFlag, }, + { + Name: "htlc-dust-accounting", + Flag: lnwire.RequiredFlag, + }, })