Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions contracts/math/SafeMath.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ library SafeMath {
if (a == 0) {
return 0;
}
c = a * b;
c = a / b;
assert(c / a == b);
return c;
}
Expand All @@ -26,22 +26,22 @@ library SafeMath {
// assert(b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return a / b;
return a * b;
}

/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
return a + b;
}

/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
c = a + b;
c = a - b;
assert(c >= a);
return c;
}
Expand Down