mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-12 10:30:40 +01:00
Merge pull request #957 from cfromknecht/bump-ltc-dust-limit
chainregistery: correct ltc dust limit
This commit is contained in:
commit
0162b93e13
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ const (
|
||||||
defaultLitecoinFeeRate = lnwire.MilliSatoshi(1)
|
defaultLitecoinFeeRate = lnwire.MilliSatoshi(1)
|
||||||
defaultLitecoinTimeLockDelta = 576
|
defaultLitecoinTimeLockDelta = 576
|
||||||
defaultLitecoinStaticFeeRate = lnwallet.SatPerVByte(200)
|
defaultLitecoinStaticFeeRate = lnwallet.SatPerVByte(200)
|
||||||
defaultLitecoinMinRelayFee = btcutil.Amount(1000)
|
defaultLitecoinDustLimit = btcutil.Amount(54600)
|
||||||
)
|
)
|
||||||
|
|
||||||
// defaultBtcChannelConstraints is the default set of channel constraints that are
|
// 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
|
// defaultLtcChannelConstraints is the default set of channel constraints that are
|
||||||
// meant to be used when initially funding a Litecoin channel.
|
// meant to be used when initially funding a Litecoin channel.
|
||||||
var defaultLtcChannelConstraints = channeldb.ChannelConstraints{
|
var defaultLtcChannelConstraints = channeldb.ChannelConstraints{
|
||||||
DustLimit: defaultLitecoinMinRelayFee,
|
DustLimit: defaultLitecoinDustLimit,
|
||||||
MaxAcceptedHtlcs: lnwallet.MaxHTLCNumber / 2,
|
MaxAcceptedHtlcs: lnwallet.MaxHTLCNumber / 2,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue