Mention init quirk with Call.value #794

Merged
zxq9 merged 1 commits from radrow-patch-1 into lima 2021-04-30 01:51:13 +09:00
Showing only changes of commit bc47c25138 - Show all commits

View File

@ -569,12 +569,15 @@ Call.caller : address
The address of the entity (possibly another contract) calling the contract. The address of the entity (possibly another contract) calling the contract.
### value ### value
``` ```
Call.value : int Call.value : int
``` ```
The amount of coins transferred to the contract in the call. The amount of coins transferred to the contract in the call. Note that in the `init`
entrypoint this value will be always `0` in order to get the contract creation value
one needs to inspect `Contract.balance`.
### gas ### gas