Browse Source

Merge pull request #263 from DaveAppleton/master

assert is now built in
Manuel Aráoz 8 years ago
parent
commit
7deaee04c8
1 changed files with 0 additions and 5 deletions
  1. 0 5
      contracts/SafeMath.sol

+ 0 - 5
contracts/SafeMath.sol

@@ -45,9 +45,4 @@ library SafeMath {
     return a < b ? a : b;
   }
 
-  function assert(bool assertion) internal {
-    if (!assertion) {
-      throw;
-    }
-  }
 }