-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BT-235: ERC2612 - Add ERC-20 Permit function compatibility #236
base: develop
Are you sure you want to change the base?
Conversation
} | ||
|
||
// solhint-disable-next-line func-name-mixedcase | ||
function __TokenPermit_init(string memory name) internal { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to find a solution without this init, because it has to work on updated contracts that didn't get initialized from the constructor. Or you can probably have something that checks if it is initialized already and calls __TokenPermit_init() in case it was not initialized at deployment
https://tokeny.atlassian.net/browse/BT-235