-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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>
There was a problem hiding this 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
@xgreenx all the cases should be covered now. |
crates/fuel-core/src/coins_query.rs
Outdated
@@ -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 { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the tests
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
Before requesting review