Skip to content

Instantly share code, notes, and snippets.

@spreadzp
Created October 8, 2017 21:00
Show Gist options
  • Save spreadzp/94280cbdf458da9b66cb589f78be1fd7 to your computer and use it in GitHub Desktop.
Save spreadzp/94280cbdf458da9b66cb589f78be1fd7 to your computer and use it in GitHub Desktop.
crowdsale
pragma solidity ^0.4.10;
contract UselessWorker {
int public successfullyExecutedIterations = 0;
function doWork(int _iterations) {
successfullyExecutedIterations = _iterations;
for (int i = 0; i < _iterations; i++)
{
keccak256(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment