I am having trouble compiling a contract for GameToken. I cannot figure out this error.project:/contracts/GameToken.sol:8:18: ParserError: Expected identifier but got '(' ERC20Detailed(_name, _symbol, _decimals);
1 Like
Code line 7, you have at its end a ;
sign, you should remove it because ERC20Detailed
initialization will end the constructor with the ;
that it have at the end.
Carlos Z