diff options
author | chriseth <chris@ethereum.org> | 2016-10-05 02:27:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-05 02:27:06 +0800 |
commit | f8c548b91db17d23267917b9da54f73040d33d1b (patch) | |
tree | 6e706cec58376ebb569e70ce71669d68eba69b2e /docs | |
parent | c63b2452e50e0c763a1bb09c7472a7411a20b0e7 (diff) | |
parent | b4c2880bff09c25544aa98f01a4027600fef1062 (diff) | |
download | dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar.gz dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar.bz2 dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar.lz dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar.xz dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.tar.zst dexon-solidity-f8c548b91db17d23267917b9da54f73040d33d1b.zip |
Merge pull request #1139 from D-Nice/patch-1
Typo Fix
Diffstat (limited to 'docs')
-rw-r--r-- | docs/security-considerations.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/security-considerations.rst b/docs/security-considerations.rst index a2f4ec4c..3e7695c8 100644 --- a/docs/security-considerations.rst +++ b/docs/security-considerations.rst @@ -123,7 +123,7 @@ Sending and Receiving Ether ``addr.call.value(x)()``. This is essentially the same as ``addr.send(x)``, only that it forwards all remaining gas and opens up the ability for the recipient to perform more expensive actions. This might include calling back - into the sending contract or other state changes you might not have though of. + into the sending contract or other state changes you might not have thought of. So it allows for great flexibility for honest users but also for malicious actors. - If you want to send Ether using ``address.send``, there are certain details to be aware of: |