Added Constant to SafeMath functions as they don't modify storage
This commit is contained in:
@ -6,25 +6,25 @@ pragma solidity ^0.4.11;
|
|||||||
* @dev Math operations with safety checks that throw on error
|
* @dev Math operations with safety checks that throw on error
|
||||||
*/
|
*/
|
||||||
library SafeMath {
|
library SafeMath {
|
||||||
function mul(uint256 a, uint256 b) internal returns (uint256) {
|
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
|
||||||
uint256 c = a * b;
|
uint256 c = a * b;
|
||||||
assert(a == 0 || c / a == b);
|
assert(a == 0 || c / a == b);
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
function div(uint256 a, uint256 b) internal returns (uint256) {
|
function div(uint256 a, uint256 b) internal constant returns (uint256) {
|
||||||
// assert(b > 0); // Solidity automatically throws when dividing by 0
|
// assert(b > 0); // Solidity automatically throws when dividing by 0
|
||||||
uint256 c = a / b;
|
uint256 c = a / b;
|
||||||
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
|
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
function sub(uint256 a, uint256 b) internal returns (uint256) {
|
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
|
||||||
assert(b <= a);
|
assert(b <= a);
|
||||||
return a - b;
|
return a - b;
|
||||||
}
|
}
|
||||||
|
|
||||||
function add(uint256 a, uint256 b) internal returns (uint256) {
|
function add(uint256 a, uint256 b) internal constant returns (uint256) {
|
||||||
uint256 c = a + b;
|
uint256 c = a + b;
|
||||||
assert(c >= a);
|
assert(c >= a);
|
||||||
return c;
|
return c;
|
||||||
|
|||||||
Reference in New Issue
Block a user