From 48bdeff1bfec02f62583ee24cab08dbca1781f71 Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Sun, 27 Jan 2019 22:17:10 +0530 Subject: [PATCH] Normal change. --- contracts/v2/LeverageCDP.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/v2/LeverageCDP.sol b/contracts/v2/LeverageCDP.sol index eb4c2a8..9ed644b 100644 --- a/contracts/v2/LeverageCDP.sol +++ b/contracts/v2/LeverageCDP.sol @@ -11,7 +11,7 @@ library SafeMath { require(c / a == b, "Assertion Failed"); return c; } - + function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "Assertion Failed"); uint256 c = a / b;