aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-05 16:32:10 +0800
committerGitHub <noreply@github.com>2018-09-05 16:32:10 +0800
commita996ea266c4542b37503c1d2261a17f3d5a55dbb (patch)
treec270b6634ff1bb1814ab5524e05ef841610007a4 /Changelog.md
parente6aa15bae1839ce6761c75521e0166c06469dc2e (diff)
parentde9f566a7cda48a8a23f91be380e8cd917ecaf34 (diff)
downloaddexon-solidity-a996ea266c4542b37503c1d2261a17f3d5a55dbb.tar.gz
dexon-solidity-a996ea266c4542b37503c1d2261a17f3d5a55dbb.tar.zst
dexon-solidity-a996ea266c4542b37503c1d2261a17f3d5a55dbb.zip
Merge pull request #4590 from ethereum/msgValueModifier
Warn if modifier uses msg.value in non-payable function
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index bf99123b..8760b818 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -62,6 +62,7 @@ Breaking Changes:
* Type Checker: Disallow "loose assembly" syntax entirely. This means that jump labels, jumps and non-functional instructions cannot be used anymore.
* Type System: Disallow explicit and implicit conversions from decimal literals to ``bytesXX`` types.
* Type System: Disallow explicit and implicit conversions from hex literals to ``bytesXX`` types of different size.
+ * View Pure Checker: Disallow ``msg.value`` in (or introducing it via a modifier to) a non-payable function.
* Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/solidity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible.
* References Resolver: Turn missing storage locations into an error. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Disallow functions without implementation to use modifiers. This was already the case in the experimental 0.5.0 mode.