We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e78102f + a9fb6c2 commit 7261ff4Copy full SHA for 7261ff4
contracts/AirDrop.sol
@@ -57,7 +57,6 @@ contract AirDrop is Ownable {
57
function AirDrop(address _tokenAddress){
58
tokenInstance = Token(_tokenAddress);
59
}
60
- event AddressLog(address _from, uint256 _amount);
61
62
/*
63
Airdrop function which take up a array of address and amount and call the
@@ -69,8 +68,6 @@ contract AirDrop is Ownable {
69
68
{
70
/* calling transfer function from contract */
71
tokenInstance.transfer(_address [i],_amount);
72
- /* logging event */
73
- AddressLog(_address [i],_amount);
74
75
76
0 commit comments