summaryrefslogtreecommitdiffstats
path: root/contracts/Governance.sol
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/Governance.sol')
-rw-r--r--contracts/Governance.sol4
1 files changed, 3 insertions, 1 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol
index 514864d..529b08b 100644
--- a/contracts/Governance.sol
+++ b/contracts/Governance.sol
@@ -17,6 +17,8 @@ contract Governance {
// ReportType.
enum ReportType {
+ FAIL_STOP,
+ FAIL_STOP_DKG,
INVALID_DKG,
FORK_VOTE,
FORK_BLOCK
@@ -153,7 +155,7 @@ contract Governance {
event Withdrawn(address indexed NodeAddress, uint256 Amount);
event NodeAdded(address indexed NodeAddress);
event NodeRemoved(address indexed NodeAddress);
- event ForkReported(address indexed NodeAddress, uint256 Type, bytes Arg1, bytes Arg2);
+ event Reported(address indexed NodeAddress, uint256 Type, bytes Arg1, bytes Arg2);
event Fined(address indexed NodeAddress, uint256 Amount);
event FinePaid(address indexed NodeAddress, uint256 Amount);
event DKGReset(uint256 indexed Round, uint256 BlockHeight);