diff options
author | chriseth <chris@ethereum.org> | 2016-08-17 17:14:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 17:14:47 +0800 |
commit | e4578982c6e1a39ca3457ab1844be37b500dedda (patch) | |
tree | 4b2c89e71ca9db86f34a8bcf607d08ddb1b2df10 /docs/control-structures.rst | |
parent | ad47a06a762b615fd8dbccf4b56c027fec47abc5 (diff) | |
parent | 0c2dc3407560663029c62cc925e6856d8da6c7e3 (diff) | |
download | dexon-solidity-e4578982c6e1a39ca3457ab1844be37b500dedda.tar.gz dexon-solidity-e4578982c6e1a39ca3457ab1844be37b500dedda.tar.zst dexon-solidity-e4578982c6e1a39ca3457ab1844be37b500dedda.zip |
Merge pull request #905 from ethereum/chriseth-patch-1
Docs: wording: recursive call exploit -> reentrancy exploit
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 4ac4b283..a6daccac 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -82,7 +82,7 @@ parentheses at the end perform the actual call. that the called contract can change state variables of the calling contract via its functions. Write your functions in a way that, for example, calls to external functions happen after any changes to state variables in your contract - so your contract is not vulnerable to a recursive call exploit. + so your contract is not vulnerable to a reentrancy exploit. Named Calls and Anonymous Function Parameters --------------------------------------------- |