diff options
author | chriseth <chris@ethereum.org> | 2016-12-11 23:46:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-11 23:46:58 +0800 |
commit | d0542f0e369a95ed2ae2a02cec2a199e3844c885 (patch) | |
tree | 7747ab37545cc18ca10c62f276992f350230a4c0 | |
parent | d2b8bdd0163ba097e86bbce8d9770256bcda7a3b (diff) | |
download | dexon-solidity-d0542f0e369a95ed2ae2a02cec2a199e3844c885.tar.gz dexon-solidity-d0542f0e369a95ed2ae2a02cec2a199e3844c885.tar.zst dexon-solidity-d0542f0e369a95ed2ae2a02cec2a199e3844c885.zip |
Warn if msg.value is used in non-payable function.
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index c76d10e1..1eb90c22 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,7 @@ ### 0.4.7 (unreleased) Features: + * Type checker: Warn when ``msg.value`` is used in non-payable function. * Code generator: Inject the Swarm hash of a metadata file into the bytecode. * Optimizer: Some dead code elimination. |