From 3df17e892491fbb47bf6ed03680b0fb7fbb68140 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Thu, 23 Jan 2025 15:43:16 -0500 Subject: [PATCH] fix: ISwapExecutor shouldn't be payable No reason for that. --- foundry/interfaces/ISwapExecutor.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/foundry/interfaces/ISwapExecutor.sol b/foundry/interfaces/ISwapExecutor.sol index db71f1a..d8bf82c 100644 --- a/foundry/interfaces/ISwapExecutor.sol +++ b/foundry/interfaces/ISwapExecutor.sol @@ -28,7 +28,6 @@ interface ISwapExecutor { */ function swap(uint256 givenAmount, bytes calldata data) external - payable returns (uint256 calculatedAmount); }