function "approve" shuoldn't be something like this?
`function approve(address _spender, uint _value) public returns (bool success) {
if (_value > 0 && __balanceOf[msg.sender] >= _value) {
__allowances[msg.sender][_spender] = _value;
return true;
}
return false;
}`
line 49, file MyToken.sol
thanks! =)
function "approve" shuoldn't be something like this?
line 49, file MyToken.sol
thanks! =)