Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function deposit() payable public {
  2. balances[msg.sender] = balances[msg.sender].add(msg.value);
  3. totalBalances.add(msg.value);
  4. }
Add Comment
Please, Sign In to add comment