From 3d2994d92d19551910715f98f903e46ba0ad03a1 Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Thu, 10 Jan 2019 17:25:40 +0800 Subject: contracts: add more events for fine & report actions --- contracts/Governance.sol | 4 ++++ 1 file changed, 4 insertions(+) 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 { -- cgit