mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Buglist entry for UserDefinedValueTypesBug
This commit is contained in:
parent
7e7c68e5bf
commit
9d8a0a6f82
@ -1,4 +1,15 @@
|
||||
[
|
||||
{
|
||||
"uid": "SOL-2021-4",
|
||||
"name": "UserDefinedValueTypesBug",
|
||||
"summary": "User defined value types with underlying type shorter than 32 bytes used incorrect storage layout and wasted storage",
|
||||
"description": "The compiler did not correctly compute the storage layout of user defined value types based on types that are shorter than 32 bytes. It would always use a full storage slot for these types, even if the underlying type was shorter. This was wasteful and might have problems with tooling or contract upgrades.",
|
||||
"link": "https://blog.soliditylang.org/2021/09/29/user-defined-value-types-bug/",
|
||||
"introduced": "0.8.8",
|
||||
"fixed": "0.8.9",
|
||||
"severity": "very low"
|
||||
|
||||
},
|
||||
{
|
||||
"uid": "SOL-2021-3",
|
||||
"name": "SignedImmutables",
|
||||
|
@ -1585,6 +1585,7 @@
|
||||
},
|
||||
"0.8.8": {
|
||||
"bugs": [
|
||||
"UserDefinedValueTypesBug",
|
||||
"SignedImmutables"
|
||||
],
|
||||
"released": "2021-09-27"
|
||||
|
Loading…
Reference in New Issue
Block a user