aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-01 19:54:59 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-08-02 03:51:52 +0800
commitd1b13c0624f93913c08fc2fdd152abef3002d2d2 (patch)
tree63e9f24849470ffccdd1b5103afef71718e2aae3 /docs
parentf63bb0a442bc3e7676739073fe498877c9b15927 (diff)
downloaddexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar.gz
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar.bz2
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar.lz
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar.xz
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.tar.zst
dexon-solidity-d1b13c0624f93913c08fc2fdd152abef3002d2d2.zip
Add warning that low-level call/callcode/delegatecall don't check for existence
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index a7af69f5..796e9238 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -393,6 +393,9 @@ When exceptions happen in a sub-call, they "bubble up" (i.e. exceptions are reth
and the low-level functions ``call``, ``delegatecall`` and ``callcode`` -- those return ``false`` in case
of an exception instead of "bubbling up".
+.. warning::
+ The low-level ``call``, ``delegatecall`` and ``callcode`` will return success if the calling account is non-existent, as part of the design of EVM. Existence must be checked prior to calling if desired.
+
Catching exceptions is not yet possible.
In the following example, you can see how ``require`` can be used to easily check conditions on inputs