From e5c63635e3508a8d9d0afed091578cc4bb59a9c7 Mon Sep 17 00:00:00 2001 From: Andrew Fleming Date: Fri, 19 Jan 2024 04:52:32 -0500 Subject: [PATCH] Remove documented requirement in IERC1155's `balanceOf` (#4847) --- contracts/token/ERC1155/IERC1155.sol | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contracts/token/ERC1155/IERC1155.sol b/contracts/token/ERC1155/IERC1155.sol index db865a72f..be47e7ea4 100644 --- a/contracts/token/ERC1155/IERC1155.sol +++ b/contracts/token/ERC1155/IERC1155.sol @@ -44,10 +44,6 @@ interface IERC1155 is IERC165 { /** * @dev Returns the value of tokens of token type `id` owned by `account`. - * - * Requirements: - * - * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256);