Skip to content
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

Gas Optimizations #193

Open
code423n4 opened this issue May 14, 2022 · 0 comments
Open

Gas Optimizations #193

code423n4 opened this issue May 14, 2022 · 0 comments
Labels
bug Something isn't working G (Gas Optimization)

Comments

@code423n4
Copy link
Contributor

[G - 01] Useless nonReentrant keyword

Here, in withdraw, the nonReentrant keyword is useless as the vault is burn line 335 before any external call, any reentrant call would fail because of the require line 323 as the owner would be the 0 address. Overall, ReentrancyGuard inheritance can be removed.

[G - 02] In CallyNFT, override transferFrom

Although the transfer functions of CallyNFT won’t revert because arithmetics are unchecked (see code), the contracts should still override transferFrom to remove the modifications of _balanceOf . First out of coherence and then for gas savings. You could also remove the _balanceOf mapping as it becomes useless. Note that this does not concern the Cally contract which does override transferFrom but only for other contracts that may use CallyNFT.

@code423n4 code423n4 added bug Something isn't working G (Gas Optimization) labels May 14, 2022
code423n4 added a commit that referenced this issue May 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working G (Gas Optimization)
Projects
None yet
Development

No branches or pull requests

1 participant