diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-25 12:01:39 +0800 |
---|---|---|
committer | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-25 12:01:39 +0800 |
commit | f3706799a4c4873d9209954781a60c6c19549d90 (patch) | |
tree | df6bfa9c1fbd6a76e9c8d2ba442e1180002db228 | |
parent | 1a1bba7ec6c6781f5bd92bbc970c42cd01865b53 (diff) | |
download | dexon-governance-abi-f3706799a4c4873d9209954781a60c6c19549d90.tar.gz dexon-governance-abi-f3706799a4c4873d9209954781a60c6c19549d90.tar.zst dexon-governance-abi-f3706799a4c4873d9209954781a60c6c19549d90.zip |
contract: Add amount to undelegate event
-rw-r--r-- | contracts/Governance.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol index 4724170..364c9cf 100644 --- a/contracts/Governance.sol +++ b/contracts/Governance.sol @@ -142,7 +142,7 @@ contract Governance { event Staked(address indexed NodeAddress); event Unstaked(address indexed NodeAddress); event Delegated(address indexed NodeAddress, address indexed DelegatorAddress, uint256 Amount); - event Undelegated(address indexed NodeAddress, address indexed DelegatorAddress); + event Undelegated(address indexed NodeAddress, address indexed DelegatorAddress, uint256 Amount); 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); |