Last active
June 29, 2017 19:51
-
-
Save brynbellomy/763d4bc71f1e1ab03e2e29f6fbefedc0 to your computer and use it in GitHub Desktop.
medium-auction-contract-1.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| contract Auction { | |
| function placeBid() returns (bool success) {} | |
| function withdraw() returns (bool success) {} | |
| function cancelAuction() returns (bool success) {} | |
| event LogBid(address bidder, uint bid, address highestBidder, uint highestBid, uint highestBindingBid); | |
| event LogWithdrawal(address withdrawer, address withdrawalAccount, uint amount); | |
| event LogCanceled(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment