aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-09-06 18:34:53 +0800
committerGitHub <noreply@github.com>2016-09-06 18:34:53 +0800
commit765a3d752948b680cbab021014a1a1bac1a2ccd2 (patch)
tree53576b8cac90eb0e1cb606e67c7bd45724ec8fa0 /Changelog.md
parent63ac17044ac868207fabfdd03fdbdc951ed7ce2d (diff)
downloaddexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar.gz
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar.bz2
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar.lz
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar.xz
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.tar.zst
dexon-solidity-765a3d752948b680cbab021014a1a1bac1a2ccd2.zip
Clarify payable fallback function
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/Changelog.md b/Changelog.md
index 3ad56fd7..8cba692c 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -11,9 +11,10 @@ Breaking Changes:
``pragma solidity >=0.4.0 <0.4.8;``
* Functions that want to receive Ether have to specify the
new ``payable`` modifier (otherwise they throw).
- * Contracts that want to receive Ether have to implement a fallback
- function with the payable modifier (contracts now throw if no fallback
- function is defined and no function matches the signature).
+ * Contracts that want to receive Ether with a plain "send"
+ have to implement a fallback function with the ``payable``
+ modifier. Contracts now throw if no payable fallback
+ function is defined and no function matches the signature.
* Failing contract creation through "new" throws.
* Division / modulus by zero throws
* Function call throws if target contract does not have code