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

feat: mempool: Reduce minimum replace fee from 1.25x to 1.1x #10416

Merged
merged 2 commits into from
Mar 9, 2023

Commits on Mar 9, 2023

  1. feat: mpool: Reduce minimum replace fee from 1.25x to 1.1x

    However, we're leaving the default at 1.25x for backwards compatibility,
    for now.
    
    Also:
    
    1. Actually use the configured replace fee ratio.
    2. Store said ratios as percentages instead of floats. 1.25, or 1+1/(2^2),
    can be represented as a float. 1.1, or 1 + 1/(2 * 5), cannot.
    
    fixes #10415
    Stebalien committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    155d1a5 View commit details
    Browse the repository at this point in the history
  2. fix negative values

    Stebalien committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    8270530 View commit details
    Browse the repository at this point in the history