Scope of pause() and unpause() Functions changed from External to Public

The Contracts Wizard found at this link, used to generate the pause() and unpause() functions with an external scope, but it has now changed to a public one. Is there a specific reason for this change?

function pause() external onlyOwner()

Thank you. J

public functions can be used internally, and this can come in handy sometimes. No particular reason otherwise.

1 Like