Skip to content

Instantly share code, notes, and snippets.

@arkhaminferno
Last active September 24, 2019 02:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arkhaminferno/1333d9b41d5fd65c628da9e2cab94d91 to your computer and use it in GitHub Desktop.
Save arkhaminferno/1333d9b41d5fd65c628da9e2cab94d91 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
pragma solidity ^0.4.24;
contract OverflowandUnderflow{
function overflow() public pure returns(uint256){
uint256 max=2**256-1;
return max+1;
}
function underflow() public pure returns(uint256){
uint256 min=0;
return min-1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment