Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/token/ERC20/extensions/ERC20Freezable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import {IERC7943Fungible} from "../../../interfaces/IERC7943.sol";
/**
* @dev Extension of {ERC20} that allows to implement a freezing
* mechanism that can be managed by an authorized account with the
* {_freezeTokens} and {_unfreezeTokens} functions.
* {_setFrozen} function.
*
* The freezing mechanism provides the guarantee to the contract owner
* (e.g. a DAO or a well-configured multisig) that a specific amount
* of tokens held by an account won't be transferable until those
* tokens are unfrozen using {_unfreezeTokens}.
* tokens are unfrozen using {_setFrozen}.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would be clearer: ... won't be transferable until the frozen amount is reduced using {_setFrozen}.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changed

*/
abstract contract ERC20Freezable is ERC20 {
/// @dev Frozen amount of tokens per address.
Expand Down