From 7d08c4da7fd94898143479ed31dee10d941388a7 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Mon, 9 Oct 2017 19:02:57 -0300 Subject: [PATCH] make TokenVesting variables public --- contracts/token/TokenVesting.sol | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/contracts/token/TokenVesting.sol b/contracts/token/TokenVesting.sol index 6d43edff4..2612fd42a 100644 --- a/contracts/token/TokenVesting.sol +++ b/contracts/token/TokenVesting.sol @@ -18,16 +18,16 @@ contract TokenVesting is Ownable { event Revoked(); // beneficiary of tokens after they are released - address beneficiary; + address public beneficiary; - uint256 cliff; - uint256 start; - uint256 duration; + uint256 public cliff; + uint256 public start; + uint256 public duration; - bool revocable; + bool public revocable; - mapping (address => uint256) released; - mapping (address => bool) revoked; + mapping (address => uint256) public released; + mapping (address => bool) public revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the