Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Signed SafeMath #1559

Merged
merged 10 commits into from
Dec 18, 2018
2 changes: 1 addition & 1 deletion contracts/math/SafeMath.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.4.24;
* @dev Math operations with safety checks that revert on error
*/
library SafeMath {
int256 constant private INT256_MIN = -2^255;
int256 constant private INT256_MIN = -2**255;
frangio marked this conversation as resolved.
Show resolved Hide resolved

/**
* @dev Multiplies two unsigned integers, reverts on overflow.
Expand Down