diff options
-rw-r--r-- | contracts/Governance.sol | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol index 364c9cf..b4fd2c6 100644 --- a/contracts/Governance.sol +++ b/contracts/Governance.sol @@ -141,9 +141,10 @@ contract Governance { event CRSProposed(uint256 indexed Round, bytes32 CRS); event Staked(address indexed NodeAddress); event Unstaked(address indexed NodeAddress); + event NodeRemoved(address indexed NodeAddress); event Delegated(address indexed NodeAddress, address indexed DelegatorAddress, uint256 Amount); event Undelegated(address indexed NodeAddress, address indexed DelegatorAddress, uint256 Amount); - event Withdrawn(address indexed NodeAddress, uint256 Amount); + event Withdrawn(address indexed NodeAddress, address indexed DelegatorAddress, 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); |