Skip to content

Instantly share code, notes, and snippets.

@cwhinfrey
Created April 24, 2020 22:08
Show Gist options
  • Save cwhinfrey/98ea9ddee5532d71231c27227271636a to your computer and use it in GitHub Desktop.
Save cwhinfrey/98ea9ddee5532d71231c27227271636a to your computer and use it in GitHub Desktop.
GasBurner.sol
contract GasBurner {
uint[] nums;
function doSomethingHeavy() public {
for( uint i = 0; i < 50; i++ ) {
nums.push(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment