Skip to content

Commit 268ecb8

Browse files
committed
Fixing linting
1 parent d374631 commit 268ecb8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

common/contracts/token/TokenERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import "../interface/IERC20.sol";
1111
* SPDX-License-Identifier: MIT
1212
*
1313
* Error messages
14-
* TE01: Address is invalid
14+
* TE01: Recipient is invalid
1515
* TE02: Not enougth tokens
1616
* TE03: Approval too low
1717
*/

common/contracts/token/TokenNFT.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ import "../convert/Bytes32Convert.sol";
1818
contract TokenNFT is INFT {
1919
using Bytes32Convert for bytes32;
2020

21-
uint256 constant ALL_TOKENS = ~uint256(0);
22-
uint256 constant NO_TOkENS = uint256(0);
21+
uint256 constant internal ALL_TOKENS = ~uint256(0);
2322

2423
string internal name_;
2524
string internal symbol_;

0 commit comments

Comments
 (0)