Skip to content

Commit

Permalink
docs: add a comment about the previous name of a function
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniiZaitsevCW committed Aug 29, 2024
1 parent b21d81c commit d6fc8f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions contracts/base/ERC20Freezable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ abstract contract ERC20Freezable is ERC20Base, IERC20Freezable {
* @dev The contract must not be paused
* @dev Can only be called by the owner
* @dev Each freezer from the array must not be already have the provided status
* @dev NOTE: The previous function name was: `configureFreezers()`
*/
function configureFreezerBatch(
address[] calldata freezers, // Tools: this comment prevents Prettier from formatting into a single line.
Expand Down
2 changes: 2 additions & 0 deletions contracts/base/interfaces/IERC20Freezable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ interface IERC20Freezable {
*
* Emits a {FreezerRemoved} event for each removed freezer
*
* NOTE: The previous function name was: `configureFreezers()`
*
* @param freezers The array of freezer addresses to configure
* @param status The new status of the freezers: `true` is to assign freezers, `false` is to remove freezers
*/
Expand Down

0 comments on commit d6fc8f6

Please sign in to comment.