aboutsummaryrefslogtreecommitdiffstats
path: root/docs/units-and-global-variables.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-16 21:52:56 +0800
committerchriseth <chris@ethereum.org>2017-06-24 01:29:11 +0800
commit64067975e4d06a984fb7b92dcfb7484561c01de3 (patch)
tree17a78893b3585b22476e2fa51b8e4e7d8b453442 /docs/units-and-global-variables.rst
parent7f05ef8acac2cc6ef1df70d31205e72422540272 (diff)
downloaddexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.gz
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.zst
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.zip
Review suggestions.
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r--docs/units-and-global-variables.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 6d6b21c3..7d21f065 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -130,8 +130,8 @@ This means that, for example, ``keccak256(0) == keccak256(uint8(0))`` and
It might be that you run into Out-of-Gas for ``sha256``, ``ripemd160`` or ``ecrecover`` on a *private blockchain*. The reason for this is that those are implemented as so-called precompiled contracts and these contracts only really exist after they received the first message (although their contract code is hardcoded). Messages to non-existing contracts are more expensive and thus the execution runs into an Out-of-Gas error. A workaround for this problem is to first send e.g. 1 Wei to each of the contracts before you use them in your actual contracts. This is not an issue on the official or test net.
-.. _address_related:
.. index:: balance, send, transfer, call, callcode, delegatecall
+.. _address_related:
Address Related
---------------