Commit dcd2fccf authored by Moody Salem's avatar Moody Salem

Lint

parent 2629aee6
......@@ -58,9 +58,9 @@ export function tradeComparator(a: Trade, b: Trade) {
// consider lowest slippage next, since these are less likely to fail
if (a.slippage.lessThan(b.slippage)) {
return -1;
return -1
} else if (a.slippage.greaterThan(b.slippage)) {
return 1;
return 1
}
// finally consider the number of hops since each hop costs gas
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment