-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from thesis/compliance
EIP-2612 compliance fix: n/nonce/nonces The ERC20WithPermit implements EIP-2612 but used mapping `nonce` (singular) instead of `nonces`. This might create an issue when third-party libraries (that support EIP-2612) try to interact with the token and assume that nonces are tracked with `nonces` instead of `nonce`. Fixed it by renaming `nonce` mapping to `nonces`.
- Loading branch information
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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