Skip to content

Commit 0fd4dc3

Browse files
committed
move func
Signed-off-by: Adam Wolf <[email protected]>
1 parent 99ff684 commit 0fd4dc3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

contracts/nft/erc721m/ERC721MInitializableV1_0_1.sol

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)