Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Last active April 18, 2023 04:16
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwmccubbin/e8c3107cbc07417aa941b42c8f7fa04c to your computer and use it in GitHub Desktop.
Save gwmccubbin/e8c3107cbc07417aa941b42c8f7fa04c to your computer and use it in GitHub Desktop.
pragma solidity ^0.6.0;
contract HotelRoom {
enum Statuses { Vacant, Occupied }
Statuses currentStatus;
address payable public owner;
event Occupy(address _occupant, uint _value);
constructor() public {
owner = msg.sender;
currentStatus = Statuses.Vacant;
}
modifier onlyWhileVacant {
require(currentStatus == Statuses.Vacant, "Currently occupied.");
_;
}
modifier costs(uint _amount) {
require(msg.value >= _amount, "Not enough Ether provided.");
_;
}
receive() external payable onlyWhileVacant costs(2 ether) {
currentStatus = Statuses.Occupied;
owner.transfer(msg.value);
emit Occupy(msg.sender, msg.value);
}
}
@theisaackim
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment