File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
contracts/token/ERC20/extensions Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,15 @@ import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
7
7
/**
8
8
* @dev Extension of {ERC20} that allows to implement a custodian
9
9
* mechanism that can be managed by an authorized account with the
10
- * {freeze} and {unfreeze} functions .
10
+ * {freeze} function .
11
11
*
12
12
* This mechanism allows a custodian (e.g. a DAO or a
13
13
* well-configured multisig) to freeze and unfreeze the balance
14
14
* of a user.
15
15
*
16
16
* The frozen balance is not available for transfers or approvals
17
- * to other entities to operate on its behalf if {freeze} was not
18
- * called with such account as an argument. Similarly, the account
19
- * will be unfrozen again if {unfreeze} is called.
17
+ * to other entities to operate on its behalf if. The frozen balance
18
+ * can be reduced by calling {freeze} again with a lower amount.
20
19
*/
21
20
abstract contract ERC20Custodian is ERC20 {
22
21
/**
You can’t perform that action at this time.
0 commit comments