From cc548cfb693b1cc6b02076b747f7c5a8c7285c10 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Mon, 28 Sep 2020 13:44:45 +0530 Subject: [PATCH] removed `receive()` fallback function --- contracts/logics/settle/eth/maxComp.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/contracts/logics/settle/eth/maxComp.sol b/contracts/logics/settle/eth/maxComp.sol index ddd2e61..44dfe30 100644 --- a/contracts/logics/settle/eth/maxComp.sol +++ b/contracts/logics/settle/eth/maxComp.sol @@ -129,7 +129,4 @@ contract LogicOne is DSMath { _data[0] = abi.encodeWithSignature("sell(address,address,unit256,unit256,unit256,unit256)", getEthAddress(), getCompAddress(), amt, unitAmt, 0, 0); DSAInterface(getDsaAddress()).cast(_target, _data, getOriginAddress()); } - - receive() external payable {} - }