Created
April 24, 2020 22:08
-
-
Save cwhinfrey/98ea9ddee5532d71231c27227271636a to your computer and use it in GitHub Desktop.
GasBurner.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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