-
Notifications
You must be signed in to change notification settings - Fork 273
Add recommended_feerates optional message
#2860
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9271c1e to
6ad4d70
Compare
80c3f25 to
dd0ca58
Compare
dd0ca58 to
243ec46
Compare
ffb9e0f to
f8c7480
Compare
f8c7480 to
b8da2e2
Compare
484554d to
a14de11
Compare
a14de11 to
d2988f6
Compare
afebf96 to
9c5c29b
Compare
fa82fce to
3c875aa
Compare
58b9ae8 to
1c7228b
Compare
1c7228b to
b287b59
Compare
We send to our peers an optional message that tells them the feerates we'd like to use for funding channels. This lets them know which values are acceptable to us, in case we reject their funding requests. This is using an odd type and will be automatically ignored by existing nodes who don't support that feature.
b287b59 to
8f26248
Compare
pm47
reviewed
Sep 24, 2024
eclair-core/src/main/scala/fr/acinq/eclair/wire/protocol/LightningMessageCodecs.scala
Show resolved
Hide resolved
pm47
reviewed
Sep 24, 2024
pm47
reviewed
Sep 24, 2024
* type `CurrentFeerates` based on source Feerates are highly subjective and it makes sense to type them based on the source, to remove ambiguity. We may typically use a more "standard" feerate source for commitment feerates, and a more "aggressive" feerate source for funding/closing feerates. * rename NodeParams.currentFeerates to currentBitcoinCoreFeerates
pm47
approved these changes
Sep 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We send to our peers an optional message that tells them the feerates we'd like to use for funding channels. This lets them know which values are acceptable to us, in case we reject their funding requests.
This is using an odd type and will be automatically ignored by existing nodes who don't support that feature.