We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Case when an error occurred while sending amount_to_send
send_msg(address, amount_to_send, op::fill_up, cur_lt(), null(), 2); ;; ignore errors
my_balance -= amount_to_send;
Toncoins were not sent, but the user's balance decreased. It may be necessary to use throw_if
throw_if
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Case when an error occurred while sending amount_to_send
send_msg(address, amount_to_send, op::fill_up, cur_lt(), null(), 2); ;; ignore errors
(suppose an error occurred at this step)current balance decreased by amount_to_send
my_balance -= amount_to_send;
Toncoins were not sent, but the user's balance decreased. It may be necessary to use
throw_if
The text was updated successfully, but these errors were encountered: