aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-03-07 00:07:03 +0800
committerGitHub <noreply@github.com>2018-03-07 00:07:03 +0800
commit14b12ae7452388516d0c4eb833b0c83fe5156b44 (patch)
treeff814ac430ddc4fc56ba8753777e5bf32f7663b7 /Changelog.md
parent83dacbf669f58ad40e3035837d4ea8a846c46949 (diff)
parent3057aeece495276265d9632b97e3faffcb57fe71 (diff)
downloaddexon-solidity-14b12ae7452388516d0c4eb833b0c83fe5156b44.tar.gz
dexon-solidity-14b12ae7452388516d0c4eb833b0c83fe5156b44.tar.zst
dexon-solidity-14b12ae7452388516d0c4eb833b0c83fe5156b44.zip
Merge pull request #2966 from ethereum/useStaticCall
Use STATICCALL for pure function calls.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index dd8d6e49..c643c943 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,8 +2,9 @@
Features:
* C99/C++-style scoping rules (instead of JavaScript function scoping) take effect as experimental v0.5.0 feature.
- * Code Generator: Assert that ``k != 0`` for ``molmod(a, b, k)`` and ``addmod(a, b, k)`` as experimental 0.5.0 feature.
+ * Code Generator: Assert that ``k != 0`` for ``mulmod(a, b, k)`` and ``addmod(a, b, k)`` as experimental 0.5.0 feature.
* Code Generator: Do not retain any gas in calls (except if EVM version is set to homestead).
+ * Code Generator: Use ``STATICCALL`` opcode for calling ``view`` and ``pure`` functions as experimenal 0.5.0 feature.
* Interface: Provide ability to select target EVM version (homestead or byzantium, with byzantium being the default).
* Standard JSON: Reject badly formatted invalid JSON inputs.
* Type Checker: Disallow uninitialized storage pointers as experimental 0.5.0 feature.