Skip to content

Instantly share code, notes, and snippets.

@ankitbrahmbhatt1997
Created February 21, 2019 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitbrahmbhatt1997/7cb6fce88591ea7d2212fe1410344df7 to your computer and use it in GitHub Desktop.
Save ankitbrahmbhatt1997/7cb6fce88591ea7d2212fe1410344df7 to your computer and use it in GitHub Desktop.
modifiers
modifier onlyAdmin {
require(msg.sender == admin);
_;
}
modifier goalReached {
require(raisedAmount >= goal);
_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment