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

Add allow_partial parameter to the "coins to spend" query #2912

Open
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

AurelienFT
Copy link
Contributor

@AurelienFT AurelienFT commented Mar 31, 2025

Linked Issues/PRs

Closes #2898

THIS IS A REVIVAL OF #2904 WITH REVIEW COMMENTS ADDRESSED (because of CLA). Inspiration from Rafal. Kudos to @rafal-ch !

Description

This PR introduces the new allow_partial parameter to the "coins to spend" inputs query. This field is optional to avoid breaking change. If set to true, the query returns available coins instead of failing when the requested amount is unavailable.

I consider this change "non-breaking" since the new parameter is not strictly required when sending the query.

Checklist

  • New behavior is reflected in tests

Before requesting review

  • I have reviewed the code myself

xgreenx
xgreenx previously approved these changes Mar 31, 2025
@AurelienFT AurelienFT requested a review from a team March 31, 2025 22:00
Copy link
Member

@MitchTurner MitchTurner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Just a couple small things, then I'll approve.

Co-authored-by: Mitchell Turner <james.mitchell.turner@gmail.com>
Co-authored-by: Mitchell Turner <james.mitchell.turner@gmail.com>
MitchTurner
MitchTurner previously approved these changes Apr 1, 2025
Copy link
Collaborator

@xgreenx xgreenx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, wait. The change only covers the random_improve and case of the non indixation. We also need to cover the part when we have indexed balances

@AurelienFT AurelienFT marked this pull request as draft April 1, 2025 21:48
@AurelienFT AurelienFT marked this pull request as ready for review April 3, 2025 07:44
@AurelienFT
Copy link
Contributor Author

@xgreenx all the cases should be covered now.

@@ -277,12 +287,12 @@ pub async fn select_coins_to_spend(
let (selected_big_coins_total, selected_big_coins) =
big_coins(big_coins_stream, adjusted_total, max, exclude).await?;

if selected_big_coins_total < total {
if selected_big_coins_total < total && !allow_partial {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think if selected_big_coins_total is zero we still should return an error

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done and also modified in the other function

@@ -709,6 +720,70 @@ mod tests {
let (owner, asset_ids, base_asset_id, db) = setup_coins_and_messages();
multiple_assets_helper(owner, &asset_ids, &base_asset_id, db).await;
}

mod allow_partial {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It also would be nice to add tests for the case when indexation is available

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added the tests

@AurelienFT AurelienFT requested a review from xgreenx April 4, 2025 06:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

CoinsToSpend query should return selected coins even if the amount cannot be covered
3 participants