-
Notifications
You must be signed in to change notification settings - Fork 11.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Warning about use of delete #3412
Conversation
Hello @lucasAlonso While I do agree with the need for a warning, I'm not sure this is the right place to put it. IMO this should be at the level of the solidity library (top part of the file). |
Hi Amxx, |
It is important for this warning to show up in the documentation. For that to happen, it must be part of the natspec comments. |
Amxx changed Warning placement, now at top part of the file. |
* // WARNING! | ||
* // delete function should not be used. It will corrupt the data structure, | ||
* // clear function should be used instead. | ||
* // ref https://github.com/ethereum/solidity/pull/11843 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Format is not correct.
See utils/Address.sol
for how to properly format a warning.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, delete in not a "function", and there is no clear
function in this structure.
I would suggest something like:
Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
See ethereum/solidity#11843 for more infoIn order to clean an EnumerableMap, you can either remove all elements one by one or create a fresh instance using an array of EnumerableMap.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed wording and format.
maybe add an issue at contracts/utils/cryptography/MerkleProof.sol to make Warning's Format consistent ?
Co-authored-by: Francisco Giordano <[email protected]>
Fixes #3400
Added Warning about delete operator on structs like EnumerableSet and EnumerableMap even though they contain a mapping that will not be cleared, and the operation will in fact corrupt the struct's data.
According to ethereum/solidity#11843 this operation will no longer be allowed in Solidity 0.9, but in the meantime we should document that delete should not be used with these types.
as user frangio stated, i checked the info and link
PR Checklist
check if this Warning is useful and apply.
Need any further warning or issue?