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

Consolidate fee_amount and amount_needed #662

Commits on Aug 3, 2022

  1. Consolidate fee_amount and amount_needed

    Before this commit `fee_amount` and `amount_needed` were passed as independent
    parameters. From the perspective of coin selection algorithms, they are always
    used jointly for the same purpose, to create a coin selection with a total
    effective value greater than it's summed values.
    
    This commit removes the abstraction that the use of the two parameter
    introduced by consolidating both into a single parameter, `target_amount`, who
    carries their values added up.
    csralvall authored and danielabrozzoni committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    e8df3d2 View commit details
    Browse the repository at this point in the history