From 1500099ad6588c262d47dc5103d989c9e6d63208 Mon Sep 17 00:00:00 2001 From: Olivier van den Biggelaar Date: Thu, 25 Mar 2021 15:32:43 +0000 Subject: [PATCH] Rebase fix --- contracts/infrastructure/dapp/ParaswapFilter.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/infrastructure/dapp/ParaswapFilter.sol b/contracts/infrastructure/dapp/ParaswapFilter.sol index b402ea01c..4d8b863c7 100644 --- a/contracts/infrastructure/dapp/ParaswapFilter.sol +++ b/contracts/infrastructure/dapp/ParaswapFilter.sol @@ -203,7 +203,7 @@ contract ParaswapFilter is BaseFilter { uint256 exchangeDataOffset = 36 + abi.decode(_data[196:228], (uint256)); for(uint256 i = 0; i < _callees.length; i++) { bytes calldata slicedExchangeData = _data[exchangeDataOffset+_startIndexes[i] : exchangeDataOffset+_startIndexes[i+1]]; - address spender = Utils.recoverSpender(_augustus, _callees[i], slicedExchangeData); + address spender = Utils.recoverSpender(_callees[i], slicedExchangeData); if(!authoriser.isAuthorised(_augustus, spender, _callees[i], slicedExchangeData)) { return false; }