Skip to content

Instantly share code, notes, and snippets.

@Hebilicious
Last active April 21, 2021 20:54
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 Hebilicious/2a9c0dfb0dc4e80410a64d91e80b00e1 to your computer and use it in GitHub Desktop.
Save Hebilicious/2a9c0dfb0dc4e80410a64d91e80b00e1 to your computer and use it in GitHub Desktop.
function excludeFromFee(address account) public onlyOwner {
_isExcludedFromFee[account] = true;
}
function includeInFee(address account) public onlyOwner {
_isExcludedFromFee[account] = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment