Commit 7d08c4da by Francisco Giordano

make TokenVesting variables public

parent 01b92d1d
...@@ -18,16 +18,16 @@ contract TokenVesting is Ownable { ...@@ -18,16 +18,16 @@ contract TokenVesting is Ownable {
event Revoked(); event Revoked();
// beneficiary of tokens after they are released // beneficiary of tokens after they are released
address beneficiary; address public beneficiary;
uint256 cliff; uint256 public cliff;
uint256 start; uint256 public start;
uint256 duration; uint256 public duration;
bool revocable; bool public revocable;
mapping (address => uint256) released; mapping (address => uint256) public released;
mapping (address => bool) revoked; mapping (address => bool) public revoked;
/** /**
* @dev Creates a vesting contract that vests its balance of any ERC20 token to the * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment