Hi there,
There was one ERC compliance issue at LinkToken constructor here:
|
|
|
function LinkToken() |
|
public |
|
{ |
|
balances[msg.sender] = totalSupply; |
|
} |
|
|
For the ERC20
A token contract which creates new tokens SHOULD trigger a Transfer event with the _from address set to 0x0 when tokens are created. (Rule-12)
I noticed that this issue has been solved after ver 0,6, but the current eth main chain is still ver 0.4. Do we have any plan to fix it?
Hi there,
There was one ERC compliance issue at LinkToken constructor here:
LinkToken/contracts/v0.4/LinkToken.sol
Lines 14 to 20 in 8fd6d62
For the ERC20
I noticed that this issue has been solved after ver 0,6, but the current eth main chain is still ver 0.4. Do we have any plan to fix it?