Skip to content

Instantly share code, notes, and snippets.

@xpdlf1004
Created May 25, 2018 15:58
Show Gist options
  • Save xpdlf1004/51d58eed51af0293c926185e7a16fb1e to your computer and use it in GitHub Desktop.
Save xpdlf1004/51d58eed51af0293c926185e7a16fb1e to your computer and use it in GitHub Desktop.
library SafeMath {
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment