-
Notifications
You must be signed in to change notification settings - Fork 282
Flat features #1253
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
Flat features #1253
Changes from all commits
a6da1db
2a50f17
97adf0b
120f773
9c595e3
1b2daaa
ea7abd9
9330c0b
9bd3059
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,14 +37,12 @@ eclair { | |
| node-color = "49daaa" | ||
|
|
||
| trampoline-payments-enable = false // TODO: @t-bast: once spec-ed this should use a global feature flag | ||
| global-features = "0200" // variable_length_onion | ||
| local-features = "088a" // initial_routing_sync + option_data_loss_protect + option_channel_range_queries + option_channel_range_queries_ex | ||
| features = "0a8a" // initial_routing_sync + option_data_loss_protect + option_channel_range_queries + option_channel_range_queries_ex + variable_length_onion | ||
|
t-bast marked this conversation as resolved.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder if we should use a completely different method, using Less error prone and more readable, but also less flexible.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would also affect the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's a good idea if we really want to allow users to turn some features on and off. |
||
| override-features = [ // optional per-node features | ||
| # { | ||
| # nodeid = "02aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", | ||
| # global-features = "", | ||
| # local-features = "" | ||
| # } | ||
| # { | ||
| # nodeid = "02aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", | ||
| # features = "" | ||
| # } | ||
| ] | ||
| sync-whitelist = [] // a list of public keys; if non-empty, we will only do the initial sync with those peers | ||
| channel-flags = 1 // announce channels | ||
|
|
@@ -132,7 +130,7 @@ eclair { | |
| // the values below will be used to perform route searching | ||
| path-finding { | ||
| max-route-length = 6 // max route length for the 'first pass', if none is found then a second pass is made with no limit | ||
| max-cltv = 1008 // max acceptable cltv expiry for the payment (1008 ~ 1 week) | ||
| max-cltv = 1008 // max acceptable cltv expiry for the payment (1008 ~ 1 week) | ||
| fee-threshold-sat = 21 // if fee is below this value we skip the max-fee-pct check | ||
| max-fee-pct = 0.03 // route will be discarded if fee is above this value (in percentage relative to the total payment amount); doesn't apply if fee < fee-threshold-sat | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.