diff --git a/contracts/common/tokens/TestToken.sol b/contracts/common/tokens/TestToken.sol index 7dffc0068..b9b6bf5a4 100644 --- a/contracts/common/tokens/TestToken.sol +++ b/contracts/common/tokens/TestToken.sol @@ -12,7 +12,7 @@ contract TestToken is ERC20Mintable { name = _name; symbol = _symbol; - uint256 value = 10**10 * (10**18); + uint256 value = 10**10 * (10**uint256(decimals)); mint(msg.sender, value); } }