removed blank lines.

This commit is contained in:
Sowmayjain 2019-03-11 01:11:47 +05:30
parent 1d096e790c
commit 2e1567b76e

View File

@ -2,13 +2,11 @@ pragma solidity ^0.4.23;
library SafeMath { library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) { function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b; uint256 c = a + b;
require(c >= a, "math-not-safe"); require(c >= a, "math-not-safe");
return c; return c;
} }
} }
contract UserAuth { contract UserAuth {