Skip to content

Commit b75c947

Browse files
committed
cleanup
1 parent 3a50c37 commit b75c947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MaglevEulerSwap.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ contract MaglevEulerSwap is MaglevBase {
4343
}
4444

4545
// if delta is > zero, then point is above the curve
46-
require(delta >= 0 , KNotSatisfied());
46+
require(delta >= 0, KNotSatisfied());
4747
}
4848

4949
uint256 private constant roundingCompensation = 1.0000000000001e18;
@@ -94,7 +94,7 @@ contract MaglevEulerSwap is MaglevBase {
9494
}
9595
}
9696

97-
/////
97+
///// Curve math routines
9898

9999
function fx(uint256 xt, uint256 px, uint256 py, uint256 x0, uint256 y0, uint256 cx, uint256 cy)
100100
internal

0 commit comments

Comments
 (0)