Guest User

Untitled

a guest
Jan 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. contract paysafe {
  2. address buyer;
  3. address seller;
  4.  
  5. function initalize() { /* start the contract - buyer and seller are uniquily identified */ }
  6. function lockMoney() { /* lock money in the contract - cannot be refunded by the buyer himself */ }
  7. function confirmDelivery() { /* confirm delivery, money is transfered to seller. Only buyser can call this. */ }
  8. function confirmCancellation() { /* confirm cancellation, money is transfered back to buyer. Only seller can call this. */ }
  9. }
Add Comment
Please, Sign In to add comment