explicitly mark functions public

This commit is contained in:
Francisco Giordano
2017-10-09 19:08:32 -03:00
parent 7d08c4da7f
commit a184013d1e

View File

@ -53,7 +53,7 @@ contract TokenVesting is Ownable {
* @notice Transfers vested tokens to beneficiary. * @notice Transfers vested tokens to beneficiary.
* @param token ERC20 token which is being vested * @param token ERC20 token which is being vested
*/ */
function release(ERC20Basic token) { function release(ERC20Basic token) public {
uint256 vested = vestedAmount(token); uint256 vested = vestedAmount(token);
require(vested > 0); require(vested > 0);
@ -70,7 +70,7 @@ contract TokenVesting is Ownable {
* remain in the contract, the rest are returned to the owner. * remain in the contract, the rest are returned to the owner.
* @param token ERC20 token which is being vested * @param token ERC20 token which is being vested
*/ */
function revoke(ERC20Basic token) onlyOwner { function revoke(ERC20Basic token) public onlyOwner {
require(revocable); require(revocable);
require(!revoked[token]); require(!revoked[token]);
@ -90,7 +90,7 @@ contract TokenVesting is Ownable {
* @dev Calculates the amount that has already vested but hasn't been released yet. * @dev Calculates the amount that has already vested but hasn't been released yet.
* @param token ERC20 token which is being vested * @param token ERC20 token which is being vested
*/ */
function vestedAmount(ERC20Basic token) constant returns (uint256) { function vestedAmount(ERC20Basic token) public constant returns (uint256) {
if (now < cliff) { if (now < cliff) {
return 0; return 0;
} else if (now >= start + duration || revoked[token]) { } else if (now >= start + duration || revoked[token]) {