diff options
author | Chris Ward <chriswhward@gmail.com> | 2018-08-01 19:32:26 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-08-01 23:21:29 +0800 |
commit | 0ad646635f6970de266138d4bdb3f1970406adfb (patch) | |
tree | 1cd48887a4df12c12a6357b34db71b73bf3beaa2 /docs/common-patterns.rst | |
parent | 9d0e927f85eb5621bb464ced1a54b6624465779e (diff) | |
download | dexon-solidity-0ad646635f6970de266138d4bdb3f1970406adfb.tar.gz dexon-solidity-0ad646635f6970de266138d4bdb3f1970406adfb.tar.zst dexon-solidity-0ad646635f6970de266138d4bdb3f1970406adfb.zip |
Small clarifications around the 2300 gas stipend from transfer and send
Diffstat (limited to 'docs/common-patterns.rst')
-rw-r--r-- | docs/common-patterns.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/common-patterns.rst b/docs/common-patterns.rst index 7c38b0e7..bc8286b2 100644 --- a/docs/common-patterns.rst +++ b/docs/common-patterns.rst @@ -93,7 +93,7 @@ Notice that, in this example, an attacker could trap the contract into an unusable state by causing ``richest`` to be the address of a contract that has a fallback function which fails (e.g. by using ``revert()`` or by just -consuming more than the 2300 gas stipend). That way, +consuming more than the 2300 gas stipend transferred to them). That way, whenever ``transfer`` is called to deliver funds to the "poisoned" contract, it will fail and thus also ``becomeRichest`` will fail, with the contract being stuck forever. |