diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-12 04:56:09 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-14 04:33:46 +0800 |
commit | cb4875a28b1595f31f1eb2d54464f5c3dfc66115 (patch) | |
tree | 2c18481b2d8fbd4d71ee7a5414229381f570a58e /Changelog.md | |
parent | 63bf0f68e6d232eccf6d64ca2bba5b39e108ea41 (diff) | |
download | dexon-solidity-cb4875a28b1595f31f1eb2d54464f5c3dfc66115.tar.gz dexon-solidity-cb4875a28b1595f31f1eb2d54464f5c3dfc66115.tar.zst dexon-solidity-cb4875a28b1595f31f1eb2d54464f5c3dfc66115.zip |
Issue error properly for oversized arrays for calldata
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md index 139238fd..62b52942 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,7 +3,8 @@ Features: * Inline Assembly: Show useful error message if trying to access calldata variables. * Inline Assembly: Support variable declaration without initial value (defaults to 0). - * Type Checker: Disallow value transfers to contracts without a payable fallback function + * Type Checker: Disallow value transfers to contracts without a payable fallback function. + * Type Checker: Raise proper error for arrays too large for ABI encoding. Bugfixes: * Type Checker: Fix invalid "specify storage keyword" warning for reference members of structs. |