fix: ISwapExecutor shouldn't be payable

No reason for that.
This commit is contained in:
TAMARA LIPOWSKI
2025-01-23 15:43:16 -05:00
parent fb9f340cb7
commit 3df17e8924

View File

@@ -28,7 +28,6 @@ interface ISwapExecutor {
*/ */
function swap(uint256 givenAmount, bytes calldata data) function swap(uint256 givenAmount, bytes calldata data)
external external
payable
returns (uint256 calculatedAmount); returns (uint256 calculatedAmount);
} }