Skip to content
Merged
Changes from all commits
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/ERC4626.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ abstract contract ERC4626 is ERC20, IERC4626 {
error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);

/**
* @dev Attempted to withdraw more assets than the max amount for `receiver`.
* @dev Attempted to withdraw more assets than the max amount for `owner`.
*/
error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);

/**
* @dev Attempted to redeem more shares than the max amount for `receiver`.
* @dev Attempted to redeem more shares than the max amount for `owner`.
*/
error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);

Expand Down
Loading