Guest User

Untitled

a guest
Jun 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function withdraw() public {
  2. uint contributed = amounts[msg.sender];
  3. amounts[msg.sender] = 0;
  4.  
  5. msg.sender.send(amounts)
  6. }
Add Comment
Please, Sign In to add comment