Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
What is `accept_message()` here inside the recv_internal at Pool.fc?

Can anyone please tell me the usage of accept_message() in recv_internal?

I saw it for the first time here:

https://github.com/ton-blockchain/nominator-pool/blob/main/func/pool.fc#L468

Follow the question:
https://t.me/tondev_eng/20929

1
1
Posted one year ago
Edited one year ago
Votes Newest

Answers


accept_message() means allows using contract's balance for gas.

By default, only incoming message value is used for internal messages processing, and if it's not sufficient, contract doesn't spend its own balance trying to process a request.

2
2
Posted one year ago
568 Views
1 Answer
one year ago
one year ago
Tags