Skip to content

Commit ccfee96

Browse files
committed
restore correct constructor param
1 parent 1ac5728 commit ccfee96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/EulerSwapFactory.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ contract EulerSwapFactory is IEulerSwapFactory, EVCUtil {
9292
address(this),
9393
keccak256(abi.encode(address(poolParams.eulerAccount), salt)),
9494
keccak256(
95-
abi.encodePacked(type(EulerSwap).creationCode, abi.encode(poolParams, curveParams))
95+
abi.encodePacked(
96+
type(EulerSwapHook).creationCode, abi.encode(poolManager, poolParams, curveParams)
97+
)
9698
)
9799
)
98100
)

0 commit comments

Comments
 (0)