Change warning about top level use of self_address in docs

This commit is contained in:
John David Pressman 2020-01-21 14:08:26 -08:00
parent c811f0058e
commit f39e006cf9

View File

@ -124,7 +124,7 @@ let check_signature = (param: (key, signature, bytes)) : bool => {
Often you want to get the address of the contract being executed. You can do it with Often you want to get the address of the contract being executed. You can do it with
`self_address`. `self_address`.
> ⚠️ Due to limitations in Michelson, self_address is only allowed in top-level expressions. Using it in a function will cause an error. > ⚠️ Due to limitations in Michelson, self_address in a contract is only allowed at the entry-point level. Using it in a utility function will cause an error.
<!--DOCUSAURUS_CODE_TABS--> <!--DOCUSAURUS_CODE_TABS-->