-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update default path-finding weight ratios #1796
Conversation
t-bast
commented
May 12, 2021
- The two months window for channel age was too small for today's network (where most channels are at least 6 months old)
- CLTV is less of an issue nowadays: there are fewer stuck payments and we're encouraging nodes to increase their CLTV because of the recent mempool congestions, so when your payment is stuck it's very painful regardless of the path you took
* The two months window for channel age was too small for today's network * CLTV is less of an issue nowadays: there are fewer stuck payments and we're encouraging nodes to increase their CLTV because of the recent mempool congestions
Codecov Report
@@ Coverage Diff @@
## master #1796 +/- ##
==========================================
- Coverage 89.34% 89.30% -0.04%
==========================================
Files 143 143
Lines 10932 10932
Branches 481 481
==========================================
- Hits 9767 9763 -4
- Misses 1165 1169 +4
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fact that most channels are at least 6 months is not really relevant here. What matters is: Is a 6-month-old channel more reliable than a 2-month-old one? And I'm not convinced that's the case.
I believe that yes, the older a channel is, the more reliable it is, for the following reasons:
The drawback is the barrier to entry for new channels / new nodes, maybe we should lower the ratio on channel age to offer a better opportunity for newcomers? But from the point of view of the sender, old is good if they don't care about the network as a market (and new channels can offer more competitive fees to make up for their young age). Of course there's always the risk that a channel was very reliable for a long time, and then upgraded its software to a buggy version, but I don't think we should (or even can) account for that... |