Commit 562fb694 by Martín Triay

[TokenVesting] Rename events according to convention

parent 822de45b
...@@ -14,8 +14,8 @@ import '../math/SafeMath.sol'; ...@@ -14,8 +14,8 @@ import '../math/SafeMath.sol';
contract TokenVesting is Ownable { contract TokenVesting is Ownable {
using SafeMath for uint256; using SafeMath for uint256;
event Release(uint256 amount); event Released(uint256 amount);
event Revoke(); event Revoked();
// beneficiary of tokens after they are released // beneficiary of tokens after they are released
address beneficiary; address beneficiary;
...@@ -62,7 +62,7 @@ contract TokenVesting is Ownable { ...@@ -62,7 +62,7 @@ contract TokenVesting is Ownable {
released[token] = released[token].add(vested); released[token] = released[token].add(vested);
Release(vested); Released(vested);
} }
/** /**
...@@ -78,7 +78,7 @@ contract TokenVesting is Ownable { ...@@ -78,7 +78,7 @@ contract TokenVesting is Ownable {
token.transfer(owner, balance - vested); token.transfer(owner, balance - vested);
Revoke(); Revoked();
} }
/** /**
......
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