Skip to content

Instantly share code, notes, and snippets.

@grampabacon
Last active September 28, 2021 16:43
Show Gist options
  • Save grampabacon/f55394b1e7972451b14aa2fbb33b1720 to your computer and use it in GitHub Desktop.
Save grampabacon/f55394b1e7972451b14aa2fbb33b1720 to your computer and use it in GitHub Desktop.
bool public _paused = true;
function pause(bool val) public onlyOwner {
_paused = val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment