From cd9849ade63129037399e49dd5693fd050623352 Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Mon, 1 Apr 2019 02:43:09 +0530 Subject: [PATCH] Code cleanup. --- contracts/ProxyLogics/InstaMaker.sol | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/contracts/ProxyLogics/InstaMaker.sol b/contracts/ProxyLogics/InstaMaker.sol index 11d4fb6..76a44f4 100644 --- a/contracts/ProxyLogics/InstaMaker.sol +++ b/contracts/ProxyLogics/InstaMaker.sol @@ -109,22 +109,6 @@ contract Helpers is DSMath { ude = 0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14; } - /** - * @dev get onchain ethereum price - */ - function getRate() public view returns (uint ethrate) { - ethrate = TubInterface(getSaiTubAddress()).per(); - } - - /** - * @dev get CDP owner by CDP IDs - */ - function getCDPOwner(uint cdpNum) public view returns (address lad) { - bytes32 cup = bytes32(cdpNum); - TubInterface tub = TubInterface(getSaiTubAddress()); - (lad,,,) = tub.cups(cup); - } - /** * @dev get CDP bytes by CDP ID */