From 8fd7b38e055120b82a4c5d372da855469e22edd6 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Wed, 28 Mar 2018 00:47:33 -0700 Subject: [PATCH] chainregistery: correct ltc dust limit Corrects the ltc dust limit, making it 54600. --- chainregistry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chainregistry.go b/chainregistry.go index 5ec5934d..d670ff9f 100644 --- a/chainregistry.go +++ b/chainregistry.go @@ -43,7 +43,7 @@ const ( defaultLitecoinFeeRate = lnwire.MilliSatoshi(1) defaultLitecoinTimeLockDelta = 576 defaultLitecoinStaticFeeRate = lnwallet.SatPerVByte(200) - defaultLitecoinMinRelayFee = btcutil.Amount(1000) + defaultLitecoinDustLimit = btcutil.Amount(54600) ) // defaultBtcChannelConstraints is the default set of channel constraints that are @@ -58,7 +58,7 @@ var defaultBtcChannelConstraints = channeldb.ChannelConstraints{ // defaultLtcChannelConstraints is the default set of channel constraints that are // meant to be used when initially funding a Litecoin channel. var defaultLtcChannelConstraints = channeldb.ChannelConstraints{ - DustLimit: defaultLitecoinMinRelayFee, + DustLimit: defaultLitecoinDustLimit, MaxAcceptedHtlcs: lnwallet.MaxHTLCNumber / 2, }