From ddbd6ec836e28eb56fc8847ef32d99602334dad9 Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Wed, 28 Nov 2018 03:36:53 +0530 Subject: [PATCH] Minor change. --- contracts/protocols/InstaMaker.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/protocols/InstaMaker.sol b/contracts/protocols/InstaMaker.sol index 779bd67..2db77d1 100644 --- a/contracts/protocols/InstaMaker.sol +++ b/contracts/protocols/InstaMaker.sol @@ -95,7 +95,7 @@ contract GlobalVar is Registry { bytes32 public blankCDP = 0x0000000000000000000000000000000000000000000000000000000000000000; address cdpAddr; // cups - mapping (address => bytes32) public cdps; // borrower >>> CDP Bytes + mapping (address => bytes32) cdps; // borrower >>> CDP Bytes bool public freezed; } @@ -237,7 +237,7 @@ contract BorrowTasks is RepayLoan { return uint(ethrate).div(10**18); } - function getCDPID(address borrower) public view returns (uint, bytes32) { + function getCDP(address borrower) public view returns (uint, bytes32) { return (uint(cdps[borrower]), cdps[borrower]); }