diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-28 18:35:18 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-28 18:59:35 +0800 |
commit | dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d (patch) | |
tree | 45575748da47b868837cf2e236211f6a3460ed92 /docs/contracts.rst | |
parent | 2b3a49f702579cfa78d7cfa90600894a31f55e9e (diff) | |
download | dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar.gz dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar.bz2 dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar.lz dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar.xz dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.tar.zst dexon-solidity-dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d.zip |
Fix lists and links
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index ef09d935..fbf1be87 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -508,6 +508,7 @@ Pure Functions Functions can be declared ``pure`` in which case they promise not to read from or modify the state. In addition to the list of state modifying statements explained above, the following are considered reading from the state: + #. Reading from state variables. #. Accessing ``this.balance`` or ``<address>.balance``. #. Accessing any of the members of ``block``, ``tx``, ``msg`` (with the exception of ``msg.sig`` and ``msg.data``). |