Skip to content
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

Limit FeeRate change for the UpdateFee msg to prevent sharp changes #7805

Merged
merged 3 commits into from
Mar 19, 2024

Commits on Mar 19, 2024

  1. chainfee: special case a zero fee estimation.

    Bitcoind will not report any fee estimation in case it has not
    enough data available. We used to just set the min mempool fee
    in such cases but this might not represent the current fee situation
    of the bitcoin network. We return an error now so that we will use
    the fallback fee instead.
    ziggie1984 committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    45c6ee6 View commit details
    Browse the repository at this point in the history
  2. lnwallet: Change MaxFee calculation.

    When determining the max fee rate of a channel we used to scale
    the fee rate depending on our available local balance on this channel.
    This lead to a special case that if a channel would be drained we
    could especially decrease the fee rate even down to the fee floor.
    Now we make sure that our max fee rate will not be lower than the
    old fee rate to make sure in case our channel is locally drained
    we do not continue to decrease fees too low.
    ziggie1984 committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    6821309 View commit details
    Browse the repository at this point in the history
  3. docs: add release-notes.

    Adding the release-notes for release 0.18 and fixing typos in the
    release doc.
    ziggie1984 committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    25c3849 View commit details
    Browse the repository at this point in the history