We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d33bc26 commit 8df1cc9Copy full SHA for 8df1cc9
src/EulerSwap.sol
@@ -34,7 +34,6 @@ contract EulerSwap is IEulerSwap, EVCUtil {
34
uint112 public reserve1;
35
uint32 public status; // 0 = unactivated, 1 = unlocked, 2 = locked
36
37
- event EulerSwapCreated(address indexed eulerSwap, address indexed asset0, address indexed asset1);
38
event Swap(
39
address indexed sender,
40
uint256 amount0In,
@@ -88,8 +87,6 @@ contract EulerSwap is IEulerSwap, EVCUtil {
88
87
priceY = curveParams.priceY;
89
concentrationX = curveParams.concentrationX;
90
concentrationY = curveParams.concentrationY;
91
-
92
- emit EulerSwapCreated(address(this), asset0Addr, asset1Addr);
93
}
94
95
/// @inheritdoc IEulerSwap
0 commit comments