diff --git a/UserProxy.sol b/UserProxy.sol index f6a98c2..803cad1 100644 --- a/UserProxy.sol +++ b/UserProxy.sol @@ -2,13 +2,11 @@ pragma solidity ^0.4.23; library SafeMath { - function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "math-not-safe"); return c; } - } contract UserAuth {