aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-15 20:04:40 +0800
committerchriseth <chris@ethereum.org>2018-02-15 20:52:17 +0800
commit2b5a5a8669cee8698f3f2cf970417a7123fbbe25 (patch)
treeeb5d78372cd7f849d7a6a2bc49cbb1280bf78ecc /Changelog.md
parent5746e2d7d867440780ced524dd7e7c29149cf3e2 (diff)
downloaddexon-solidity-2b5a5a8669cee8698f3f2cf970417a7123fbbe25.tar.gz
dexon-solidity-2b5a5a8669cee8698f3f2cf970417a7123fbbe25.tar.zst
dexon-solidity-2b5a5a8669cee8698f3f2cf970417a7123fbbe25.zip
Make addmod and mulmod revert if the last argument is zero.
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 58604ca2..d4e91c26 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,6 +1,7 @@
### 0.4.21 (unreleased)
Features:
+ * Code Generator: Assert that ``k != 0`` for ``molmod(a, b, k)`` and ``addmod(a, b, k)`` as experimental 0.5.0 feature.
* Type Checker: Disallow uninitialized storage pointers as experimental 0.5.0 feature.