We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d374631 commit 268ecb8Copy full SHA for 268ecb8
common/contracts/token/TokenERC20.sol
@@ -11,7 +11,7 @@ import "../interface/IERC20.sol";
11
* SPDX-License-Identifier: MIT
12
*
13
* Error messages
14
- * TE01: Address is invalid
+ * TE01: Recipient is invalid
15
* TE02: Not enougth tokens
16
* TE03: Approval too low
17
*/
common/contracts/token/TokenNFT.sol
@@ -18,8 +18,7 @@ import "../convert/Bytes32Convert.sol";
18
contract TokenNFT is INFT {
19
using Bytes32Convert for bytes32;
20
21
- uint256 constant ALL_TOKENS = ~uint256(0);
22
- uint256 constant NO_TOkENS = uint256(0);
+ uint256 constant internal ALL_TOKENS = ~uint256(0);
23
24
string internal name_;
25
string internal symbol_;
0 commit comments