chore: fmt

This commit is contained in:
royvardhan
2025-03-17 22:15:35 +05:30
committed by Diana Carvalho
parent 826eca4a80
commit 07d6323316
2 changed files with 32 additions and 6 deletions

View File

@@ -46,7 +46,9 @@ contract CurveExecutor is IExecutor {
);
}
// Only add the value parameter when the first token is the native token
return curveRouter.exchange{value: params.route[0] == nativeToken ? amountIn : 0}(
return curveRouter.exchange{
value: params.route[0] == nativeToken ? amountIn : 0
}(
params.route,
params.swapParams,
amountIn,