From 2e1567b76e012833a3e1322b73ccc78e7439e878 Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Mon, 11 Mar 2019 01:11:47 +0530 Subject: [PATCH] removed blank lines. --- UserProxy.sol | 2 -- 1 file changed, 2 deletions(-) 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 {