Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function BuyTicket() public payable {
  2. require(drawParticipants.length < requiredParticipants);
  3. require(msg.value == 1 ether);
  4. require(!HasAlreadyEntered());
  5. drawParticipants.push(msg.sender);
  6. }
Add Comment
Please, Sign In to add comment