Skip to content

Commit

Permalink
Remove mention of deleted unfreeze function in ERC20Custodian docs (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
arr00 authored Dec 20, 2024
1 parent 3b93bc3 commit 85e3c19
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions contracts/token/ERC20/extensions/ERC20Custodian.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@ import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/**
* @dev Extension of {ERC20} that allows to implement a custodian
* mechanism that can be managed by an authorized account with the
* {freeze} and {unfreeze} functions.
* {freeze} function.
*
* This mechanism allows a custodian (e.g. a DAO or a
* well-configured multisig) to freeze and unfreeze the balance
* of a user.
*
* The frozen balance is not available for transfers or approvals
* to other entities to operate on its behalf if {freeze} was not
* called with such account as an argument. Similarly, the account
* will be unfrozen again if {unfreeze} is called.
* to other entities to operate on its behalf if. The frozen balance
* can be reduced by calling {freeze} again with a lower amount.
*/
abstract contract ERC20Custodian is ERC20 {
/**
Expand Down

0 comments on commit 85e3c19

Please sign in to comment.