fix decimals

This commit is contained in:
owen05
2021-06-30 21:07:08 +08:00
parent 64a290938a
commit c0f01cc85e
7 changed files with 31 additions and 15 deletions

View File

@@ -17,7 +17,7 @@ interface IStdERC20 {
uint256 _totalSupply,
string memory _name,
string memory _symbol,
uint256 _decimals
uint8 _decimals
) external;
}
@@ -27,7 +27,7 @@ interface ICustomERC20 {
uint256 _initSupply,
string memory _name,
string memory _symbol,
uint256 _decimals,
uint8 _decimals,
uint256 _tradeBurnRatio,
uint256 _tradeFeeRatio,
address _team,