Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. balances: uint256[address]
  2.  
  3. @public
  4. def transferAtomic(partyA: address, partyB: address, value: uint256):
  5. self.balances[partyA] += value
  6. self.balances[partyB] -= value
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement