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
The following structs could change the order of their stored elements to decrease memory uses.
and number of occupied slots. Therefore will save gas at every store and load from memory.
In Auction.sol, AuctionData{
is optimized to: 16 slots from: 17 slots.
The new order of types (you choose the actual variables):
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
uint256
mapping
bool
bool
The text was updated successfully, but these errors were encountered:
Handle
robee
Vulnerability details
The following structs could change the order of their stored elements to decrease memory uses.
and number of occupied slots. Therefore will save gas at every store and load from memory.
is optimized to: 16 slots from: 17 slots.
The new order of types (you choose the actual variables):
The text was updated successfully, but these errors were encountered: