From bd21d50bdfd42612f3a9a526080dd8af504d9fb0 Mon Sep 17 00:00:00 2001 From: Jimmy Hu Date: Mon, 28 Jan 2019 12:16:55 +0800 Subject: contracts: Modify Withdrawn event and add NodeRemoved event --- contracts/Governance.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3