From f97bcc6f17969dfa458a60b476944094c8cdce7c Mon Sep 17 00:00:00 2001 From: gaavar Date: Thu, 22 Feb 2024 18:50:44 +0530 Subject: [PATCH] switch _storedERC721Ids to internal from private --- contracts/ERC404.sol | 2 +- contracts/ERC404U16.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/ERC404.sol b/contracts/ERC404.sol index a2d67e8..f1a60b3 100644 --- a/contracts/ERC404.sol +++ b/contracts/ERC404.sol @@ -12,7 +12,7 @@ abstract contract ERC404 is IERC404 { using DoubleEndedQueue for DoubleEndedQueue.Uint256Deque; /// @dev The queue of ERC-721 tokens stored in the contract. - DoubleEndedQueue.Uint256Deque private _storedERC721Ids; + DoubleEndedQueue.Uint256Deque internal _storedERC721Ids; /// @dev Token name string public name; diff --git a/contracts/ERC404U16.sol b/contracts/ERC404U16.sol index 41f39b0..42b0dfc 100644 --- a/contracts/ERC404U16.sol +++ b/contracts/ERC404U16.sol @@ -14,7 +14,7 @@ abstract contract ERC404U16 is IERC404 { using PackedDoubleEndedQueue for PackedDoubleEndedQueue.Uint16Deque; /// @dev The queue of ERC-721 tokens stored in the contract. - PackedDoubleEndedQueue.Uint16Deque private _storedERC721Ids; + PackedDoubleEndedQueue.Uint16Deque internal _storedERC721Ids; /// @dev Token name string public name;