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
It will reduce gas cost because it will not use SLOAD to retrieve from the contract storage and will be saved as a value in the contract bytecode; and will be PUSH32'd onto the stack when needed.
PUSH32 = 3 GAS
vs
SLOAD = 200 GAS
The text was updated successfully, but these errors were encountered:
defi-collector/contracts/MakerCollector.sol
Line 20 in b2b5e42
It will reduce gas cost because it will not use SLOAD to retrieve from the contract storage and will be saved as a value in the contract bytecode; and will be PUSH32'd onto the stack when needed.
PUSH32 = 3 GAS
vs
SLOAD = 200 GAS
The text was updated successfully, but these errors were encountered: