summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--contracts/Governance.sol4
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 {