reordering struct fields #96
Labels
bug
Something isn't working
G (Gas Optimization)
sponsor confirmed
Sponsor agrees this is a problem and intends to fix it (OK to use w/ "disagree with severity")
Handle
pants
Vulnerability details
NestedRecords line 22 - you can save storage by reordering Holding struct fields in the following way:
original:
struct Holding {
address token;
uint256 amount;
bool isActive;
}
change to:
The text was updated successfully, but these errors were encountered: