Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. pragma solidity ^0.4.19;
  2.  
  3. contract Test3 {
  4.  
  5. address owner;
  6. struct Participant {
  7. uint weight;
  8. bool refund;
  9. }
  10.  
  11. mapping(address => Participant) participants;
  12.  
  13. function () public payable;
  14.  
  15. function refund() private;
  16. }
Add Comment
Please, Sign In to add comment