Skip to content

Commit

Permalink
Make external functions public
Browse files Browse the repository at this point in the history
  • Loading branch information
matejos committed Apr 2, 2024
1 parent 8f19172 commit 799af87
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ contract InverseAppProjectedNft is IInverseAppProjectedNft, ERC721, Ownable {
super.supportsInterface(interfaceId);
}

function currentNonce(address user) external view returns (uint256) {
function currentNonce(address user) public view returns (uint256) {
return mintCount[user];
}

Expand Down Expand Up @@ -95,7 +95,7 @@ contract InverseAppProjectedNft is IInverseAppProjectedNft, ERC721, Ownable {
return tokenId;
}

function mint(address _to) external returns (uint256) {
function mint(address _to) public returns (uint256) {
return mint(_to, bytes(""));
}

Expand Down

0 comments on commit 799af87

Please sign in to comment.