Skip to content

Commit 7261ff4

Browse files
authored
Merge pull request #20 from SpringRole/removing-event
removed event
2 parents e78102f + a9fb6c2 commit 7261ff4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

contracts/AirDrop.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ contract AirDrop is Ownable {
5757
function AirDrop(address _tokenAddress){
5858
tokenInstance = Token(_tokenAddress);
5959
}
60-
event AddressLog(address _from, uint256 _amount);
6160

6261
/*
6362
Airdrop function which take up a array of address and amount and call the
@@ -69,8 +68,6 @@ contract AirDrop is Ownable {
6968
{
7069
/* calling transfer function from contract */
7170
tokenInstance.transfer(_address [i],_amount);
72-
/* logging event */
73-
AddressLog(_address [i],_amount);
7471
}
7572
}
7673
}

0 commit comments

Comments
 (0)