This commit is contained in:
owen05
2021-06-28 23:51:34 +08:00
parent d02b9b0eb8
commit 7acd630e50
7 changed files with 22 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ contract CustomERC20 is InitializableOwnable {
using SafeMath for uint256;
string public name;
uint256 public decimals;
uint8 public decimals;
string public symbol;
uint256 public totalSupply;
@@ -39,7 +39,7 @@ contract CustomERC20 is InitializableOwnable {
uint256 _initSupply,
string memory _name,
string memory _symbol,
uint256 _decimals,
uint8 _decimals,
uint256 _tradeBurnRatio,
uint256 _tradeFeeRatio,
address _team,