You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When following this guid to build rebalancing routes one can end up with invalid routes.
The reason for this is max-cltv. findroutebetweennodes can use all of the global max-cltv. When you add the extra hop your route may exceed global max-cltv and sending a payment to this roue will lead to an error:
FailureSummary(Local,expiry too big: maximum=CltvExpiry(783293) actual=CltvExpiry(783334) blockHeight=782285,List(.....
eclair version=0.8.0 commit=0077471
This could be fixed adding a new max-cltv parameter to findroutebetweennodes.
The text was updated successfully, but these errors were encountered:
https://github.com/ACINQ/eclair/blob/master/docs/CircularRebalancing.md
When following this guid to build rebalancing routes one can end up with invalid routes.
The reason for this is
max-cltv
.findroutebetweennodes
can use all of the globalmax-cltv
. When you add the extra hop your route may exceed globalmax-cltv
and sending a payment to this roue will lead to an error:FailureSummary(Local,expiry too big: maximum=CltvExpiry(783293) actual=CltvExpiry(783334) blockHeight=782285,List(.....
eclair version=0.8.0 commit=0077471
This could be fixed adding a new
max-cltv
parameter tofindroutebetweennodes
.The text was updated successfully, but these errors were encountered: