Skip to content

Instantly share code, notes, and snippets.

@brynbellomy
Last active June 25, 2017 01:39
Show Gist options
  • Select an option

  • Save brynbellomy/7021daa33793803a8847182d4e8a5c27 to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/7021daa33793803a8847182d4e8a5c27 to your computer and use it in GitHub Desktop.
Restaurant.sol
contract Restaurant {
function Restaurant() {}
event GotReservation(uint seats, uint ethAmount, uint ethBalance);
function reserve(uint seats) payable {
GotReservation(seats, msg.value, this.balance);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment