File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -95,10 +95,6 @@ contract ERC721MInitializableV1_0_1 is
9595 return _contractURI;
9696 }
9797
98- function isFrozen () public view returns (bool ) {
99- return _frozen;
100- }
101-
10298 /*==============================================================
10399 = MODIFIERS =
104100 ==============================================================*/
@@ -231,6 +227,12 @@ contract ERC721MInitializableV1_0_1 is
231227 return _setupLocked;
232228 }
233229
230+ /// @notice Checks if the contract is frozen
231+ /// @return Whether the contract is frozen
232+ function isFrozen () public view returns (bool ) {
233+ return _frozen;
234+ }
235+
234236 /// @notice Checks if the contract supports a given interface
235237 /// @param interfaceId The interface identifier
236238 /// @return True if the contract supports the interface, false otherwise
You can’t perform that action at this time.
0 commit comments