Skip to content

Instantly share code, notes, and snippets.

@brynbellomy
Created June 29, 2017 18:23
Show Gist options
  • Select an option

  • Save brynbellomy/9e683e0518c828c168aaec7cc83f52fc to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/9e683e0518c828c168aaec7cc83f52fc to your computer and use it in GitHub Desktop.
medium-auction-contract-4.sol
modifier onlyRunning {
if (canceled) throw;
if (block.number < startBlock || block.number > endBlock) throw;
_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment