Skip to content

Commit

Permalink
add docstrings for events in BlacklistableV1
Browse files Browse the repository at this point in the history
  • Loading branch information
snggeng committed Jan 23, 2024
1 parent b4c6365 commit e696688
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/v1/BlacklistableV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@ error CallerBlacklisted(address account);
abstract contract BlacklistableV1 is Initializable, ContextUpgradeable, ERC20Upgradeable {
mapping(address accountAddress => bool blacklisted) internal _blacklisted;

/**
* @dev Blacklisted event
* @param account The address that was blacklisted
*/
event Blacklisted(address indexed account);

/**
* @dev UnBlacklisted event
* @param account The address that was unblacklisted
*/
event UnBlacklisted(address indexed account);

/**
Expand Down

0 comments on commit e696688

Please sign in to comment.