Changelog entry and bug list.

This commit is contained in:
chriseth
2018-09-10 12:47:46 +02:00
parent 120438c0cf
commit b84a1b390b
3 changed files with 53 additions and 0 deletions
+7
View File
@@ -1,4 +1,11 @@
[
{
"name": "ExpCleanupZero",
"summary": "Using exponentiating with types shorter than 256 bits and zero as base can result in unexpected values.",
"description": "As defined by the EVM, 0 ** 0 is one. Solidity does not always remove dirty higher order bits of types that are smaller than 256 bits before applying an operation because it does not matter if the cleanup is performed before or after the operation. This is true for EXP except for the case where the base is zero, which was overlooked.",
"fixed": "0.5.0",
"severity": "high"
},
{
"name": "EventStructWrongData",
"summary": "Using structs in events logged wrong data.",