Open isopen opened 2 years ago
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
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)my_balance -= amount_to_send;
Toncoins were not sent, but the user's balance decreased. It may be necessary to use
throw_if