Skip to content

Commit

Permalink
Merge pull request #74 from aave/fix/fix-event-docstrings
Browse files Browse the repository at this point in the history
fix: Fix EmissionManagerUpdated event docstring
  • Loading branch information
The-3D authored Mar 15, 2022
2 parents ceacd7e + 49fe12b commit c3d745f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/rewards/interfaces/IRewardsDistributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ interface IRewardsDistributor {
);

/**
* @dev Emitted when setEmissionManager is called after transfer of the EmissionManager role to a new admin
* @param previousEmissionManager The address of the previous emission manager that requested the update of emission manager
* @param newEmissionManager The address of the new emission manager admin
* @dev Emitted when the emission manager address is updated.
* @param oldEmissionManager The address of the old emission manager
* @param newEmissionManager The address of the new emission manager
*/
event EmissionManagerUpdated(
address indexed previousEmissionManager,
address indexed oldEmissionManager,
address indexed newEmissionManager
);

Expand Down

0 comments on commit c3d745f

Please sign in to comment.