Bug list entry

This commit is contained in:
Leonardo Alt
2018-09-06 18:28:16 +02:00
committed by chriseth
parent 13c8bb1c89
commit 409b20f204
2 changed files with 28 additions and 6 deletions
+8
View File
@@ -1,4 +1,12 @@
[
{
"name": "EventStructWrongData",
"summary": "Using structs in events logged wrong data.",
"description": "If a struct is used in an event, the address of the struct is logged instead of the actual data.",
"introduced": "0.4.17",
"fixed": "0.5.0",
"severity": "very low"
},
{
"name": "OneOfTwoConstructorsSkipped",
"summary": "If a contract has both a new-style constructor (using the constructor keyword) and an old-style constructor (a function with the same name as the contract) at the same time, one of them will be ignored.",