Created
June 29, 2017 19:57
-
-
Save brynbellomy/7d63f89d05a2f7923565af429b50fdb2 to your computer and use it in GitHub Desktop.
medium-auction-contract-storage-vars.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
| // static | |
| address public owner; | |
| uint public startBlock; | |
| uint public endBlock; | |
| string public ipfsHash; | |
| uint public bidIncrement; | |
| // state | |
| bool public canceled; | |
| address public highestBidder; | |
| mapping(address => uint256) public fundsByBidder; | |
| uint public highestBindingBid; | |
| bool ownerHasWithdrawn; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment