Description
In solidity, structs can often be packed into fewer words to save gas on storage loads/stores. In the code, the following structs can be optimized in this way: LimitOrder, TriggerOrder, TwapInputAsset, MarketOrder.
Recommendation
Reorder the variables in these structs to pack them together.
Status
Acknowledged