diff --git a/contracts/token/TokenVesting.sol b/contracts/token/TokenVesting.sol index 35cae73ea..096f84807 100644 --- a/contracts/token/TokenVesting.sol +++ b/contracts/token/TokenVesting.sol @@ -14,8 +14,8 @@ import '../math/SafeMath.sol'; contract TokenVesting is Ownable { using SafeMath for uint256; - event Release(uint256 amount); - event Revoke(); + event Released(uint256 amount); + event Revoked(); // beneficiary of tokens after they are released address beneficiary; @@ -62,7 +62,7 @@ contract TokenVesting is Ownable { released[token] = released[token].add(vested); - Release(vested); + Released(vested); } /** @@ -78,7 +78,7 @@ contract TokenVesting is Ownable { token.transfer(owner, balance - vested); - Revoke(); + Revoked(); } /**