Fierce Pecan Swallow
Medium
This logic under the Automation contract is not correct. Min order size should also accept orders if the order value is exactly matching.
require(usdValue > minOrderSize, "order too small");
Suggested solution update > to >=
require(usdValue >= minOrderSize, "order too small");
Users will be confused about why orders are not created even though the order size matches the minimum accepted size
Update > to >=
require(usdValue >= minOrderSize, "order too small");