Update EIP1132.md - changes in event names

This commit is contained in:
Nitika Goel 2018-09-10 18:41:52 +05:30 committed by GitHub
parent cc61e826d7
commit 8d1480e6f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -134,10 +134,10 @@ function totalBalanceOf(address _of) view returns (uint256 amount)
```
### Lock event recorded in the token contract
`event Lock(address indexed _of, uint256 indexed _reason, uint256 _amount, uint256 _validity)`
`event Locked(address indexed _of, uint256 indexed _reason, uint256 _amount, uint256 _validity)`
### Unlock event recorded in the token contract
`event Unlock(address indexed _of, uint256 indexed _reason, uint256 _amount)`
`event Unlocked(address indexed _of, uint256 indexed _reason, uint256 _amount)`
## Test Cases