diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-10 17:25:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-01-12 16:12:51 +0800 |
commit | 3d2994d92d19551910715f98f903e46ba0ad03a1 (patch) | |
tree | e4519d0577696efe6b884629cc1adac9ab53a56f | |
parent | 35ddc165c3dbf092d112112991a68277f6b7470e (diff) | |
download | dexon-governance-abi-3d2994d92d19551910715f98f903e46ba0ad03a1.tar.gz dexon-governance-abi-3d2994d92d19551910715f98f903e46ba0ad03a1.tar.zst dexon-governance-abi-3d2994d92d19551910715f98f903e46ba0ad03a1.zip |
contracts: add more events for fine & report actions
-rw-r--r-- | contracts/Governance.sol | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol index 3389f21..f73ff57 100644 --- a/contracts/Governance.sol +++ b/contracts/Governance.sol @@ -132,6 +132,10 @@ contract Governance { event Unstaked(address indexed NodeAddress); event Delegated(address indexed NodeAddress, address indexed DelegatorAddress, uint256 Amount); event Undelegated(address indexed NodeAddress, address indexed DelegatorAddress); + event Withdrawn(address indexed NodeAddress, uint256 Amount); + event ForkReported(address indexed NodeAddress, uint256 Type, bytes Arg1, bytes Arg2); + event Fined(address indexed NodeAddress, uint256 Amount); + event FinePaid(address indexed NodeAddress, uint256 Amount); // transferOwnership() function transferOwnership(address newOwner) public onlyOwner { |