Invert utility max to cost minimization#11
Merged
arminsabouri merged 7 commits intomasterfrom Mar 26, 2026
Merged
Conversation
arminsabouri
commented
Mar 5, 2026
Collaborator
Author
|
Latest changes include
|
9eee746 to
65825c2
Compare
arminsabouri
commented
Mar 6, 2026
arminsabouri
commented
Mar 6, 2026
Shifted action evaluation from utility maximization to cost minimization inverted outcome scoring. Switched wallet selection to `min_by_key` to pick the lowest cost. Additionally, Mp Payjoin actions should have 0 cost. This is test scaffolding for now and a WIP.
Base cost = amount handled + fee_paid
This strategy will always prefer to consolidate their UTXOs for each payment. This is their most prefered action at 0 cost.
Collaborator
Author
|
this PR ended up doing more than it was suppose to (PR title). Going forward these will be split into smaller PRs |
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
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.
Shifted action evaluation from utility maximization to cost minimization inverted outcome scoring.
Switched wallet selection to
min_by_keyto pick the lowest cost.