bump ltc payment limit#1000
Conversation
increase payment limit to 0.04 * 60
|
Instead of dropping the |
|
Isn't the value of const must be known at compile time? |
|
This would require modifying the spec or adding a feature bit to signal support for larger payments |
|
You are right, according to Bolt #2, the payment limit should be less than 2^24 satoshi which is about 0.16777216 BTC / LTC. So the max payment limit for litecoin will be 0.16777216 LTC (about 19 USD when LTC price is 113 USD)? |
…ent limit to 1 BTC. Add config flag "largerPayment" to enable the feature.
|
@cfromknecht I just added a local feature with feature bit 7 to support larger payment up to 1 BTC/LTC. There is also a config flag "largerpayment" to enable this feature. |
There was a problem hiding this comment.
Thanks for the PR @Jasonhcwong! We won't be going forward with the feature bit since we are really the only implementation that fully supports Litecoin. We'll need to bump up the channel capacity by 60x when running on the Litecoin chain.
|
@wpaulino, I think c-lightning support Litecoin too and BTCPayServer is using c-lightning as backend. Simply bump up channel capacity by 60x may break interoperability. |
|
Closed as the other PR bumped up by 60x, we'll need to create a proper feature bit in the near future, but this at least lets |
increase litecoin payment limit to (0.04 * 60) as BTC is about 60 times more expensive than LTC
fixes #980