Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function adminClaimAirdropMultiple(address[] _addresses, uint _amount) public onlyOwner {
  2. for (uint i = 0; i < _addresses.length; i++)
  3. doAirdrop(_addresses[i], _amount);
  4. }
  5.  
  6. _addresses (address[])
  7.  
  8. _amount(uint256)
Add Comment
Please, Sign In to add comment