diff options
author | chriseth <chris@ethereum.org> | 2018-10-30 22:31:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 22:31:47 +0800 |
commit | 437467acfcbd5a13cc3e30dd863bf3a3d35ce1c1 (patch) | |
tree | 8dbec3f3b37f938c912b38b6d21a22f620f554d3 /Changelog.md | |
parent | 0b4f6ab72d36e68ce9bf5a10da0d785059d8709c (diff) | |
parent | 1d8e9af407fc8c47cae6401fb71463771d397d30 (diff) | |
download | dexon-solidity-437467acfcbd5a13cc3e30dd863bf3a3d35ce1c1.tar.gz dexon-solidity-437467acfcbd5a13cc3e30dd863bf3a3d35ce1c1.tar.zst dexon-solidity-437467acfcbd5a13cc3e30dd863bf3a3d35ce1c1.zip |
Merge pull request #5188 from ethereum/large-array-encoding
Do not crash when trying to encode too large arrays
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 5bf194e4..ff95a89a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -128,6 +128,7 @@ Bugfixes: * Type Checker: Fix freeze for negative fixed-point literals very close to ``0``, such as ``-1e-100``. * Type Checker: Dynamic types as key for public mappings return error instead of assertion fail. * Type Checker: Fix internal error when array index value is too large. + * Type Checker: Fix internal error when fixed-size array is too large to be encoded. * Type Checker: Fix internal error for array type conversions. * Type Checker: Fix internal error when array index is not an unsigned. * Type System: Allow arbitrary exponents for literals with a mantissa of zero. |