Skip to content

Commit

Permalink
chore: add comment for send function return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Gusarich committed Sep 3, 2024
1 parent 863f01d commit 4438116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/std/send.tact
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct SendParameters {
data: Cell? = null;
}

fun send(params: SendParameters): Int {
fun send(params: SendParameters): Int { // returns forward fee
let b: Builder = beginCell();
b = b.storeInt(1, 2); // internal_message + ihd_disabled
b = b.storeBool(params.bounce); // bounce
Expand Down

0 comments on commit 4438116

Please sign in to comment.