You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🧐 Motivation
In my codebase, I was trying to reduce the contract size.
📝 Details
The inheritance of ReentrancyGuard.sol inside a contract is leading to reduction in contract size of 0.028 KB per call of nonReentrant modifier.
Total no. of time nonReentrant called: 11
So, size per call = 0.308/11 = 0.028 KB
The verification is shown in the image below:
The text was updated successfully, but these errors were encountered:
🧐 Motivation
In my codebase, I was trying to reduce the contract size.
📝 Details
The inheritance of
ReentrancyGuard.sol
inside a contract is leading to reduction in contract size of0.028 KB
per call ofnonReentrant
modifier.Total no. of time
nonReentrant
called: 11So, size per call =
0.308/11
= 0.028 KBThe verification is shown in the image below:
The text was updated successfully, but these errors were encountered: