From 8d1480e6f8737e8a4e9a41242b459654a00baecd Mon Sep 17 00:00:00 2001 From: Nitika Goel <33280614+nitika-goel@users.noreply.github.com> Date: Mon, 10 Sep 2018 18:41:52 +0530 Subject: [PATCH] Update EIP1132.md - changes in event names --- EIPS/eip-1132.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EIPS/eip-1132.md b/EIPS/eip-1132.md index 25220742..c5059281 100644 --- a/EIPS/eip-1132.md +++ b/EIPS/eip-1132.md @@ -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