Skip to content

Commit

Permalink
fix: indexed events for governance
Browse files Browse the repository at this point in the history
  • Loading branch information
rajkharvar committed Jun 13, 2022
1 parent 64706eb commit 2d581a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Core/parameters/Governance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract Governance is Initializable, ACL, Constants {
* @param valueChangedTo new value of the parameter
* @param timestamp the exact time the parameter change took place
*/
event ParameterChanged(address admin, string parameterName, uint256 valueChangedTo, uint256 timestamp);
event ParameterChanged(address indexed admin, string parameterName, uint256 valueChangedTo, uint256 timestamp);

/**
* @param blockManagerAddress The address of the BlockManager contract
Expand Down

0 comments on commit 2d581a6

Please sign in to comment.