Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brynbellomy/e5bf04f5af5d0f16b09c2c7d430bb1f1 to your computer and use it in GitHub Desktop.
Save brynbellomy/e5bf04f5af5d0f16b09c2c7d430bb1f1 to your computer and use it in GitHub Desktop.
medium-auction-contract-onlyEndedOrCanceled.sol
modifier onlyEndedOrCanceled {
if (block.number < endBlock && !canceled) throw;
_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment