Created
May 15, 2021 05:53
-
-
Save percybolmer/3f4320ee590b223cedc95e3eb8a6b084 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* @notice _allowances is used to manage and control allownace | |
* An allowance is the right to use another accounts balance, or part of it | |
*/ | |
mapping (address => mapping (address => uint256)) private _allowances; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment