Merge pull request #957 from cfromknecht/bump-ltc-dust-limit

chainregistery: correct ltc dust limit
This commit is contained in:
Olaoluwa Osuntokun 2018-03-28 16:10:42 -07:00 committed by GitHub
commit 0162b93e13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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,
}