-
Notifications
You must be signed in to change notification settings - Fork 45
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 fail_with_status host function, fix #146 #425
Conversation
cc @jonjove and @leighmcculloch I am posting this to make discussion concrete -- we shouldn't merge this until we have consensus that it's the right thing to do. |
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.
👍🏻 Looks good to me.
Let's continue to discuss whether we should do this in https://github.com/stellar/stellar-xdr-next/issues/28.
/// Causes the currently executing contract to fail immediately | ||
/// with a provided status code, which must be of error-type | ||
/// `ScStatusType::ContractError`. Does not actually return. | ||
{"9", fn fail_with_status(status:Status) -> RawVal } |
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'm wondering if fail is the best term for us to use. Maybe we should use abort_with_
, since what will happen is equivalent to aborting? This isn't particularly important and it is fine, and maybe preferable, as is.
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.
One word change in error text, otherwise LGTM.
Also, one build is failing.
9b68ab8
to
ec2575e
Compare
Addresses #146 by providing a fail_with_status function that users can call to fail the current contract call (trapping its vm) with a user-provided status. The status has to be the newly-added
ScStatusType::ContractError
with an opaque user-provided u32 body.