Last active
September 28, 2021 16:43
-
-
Save grampabacon/f55394b1e7972451b14aa2fbb33b1720 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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