Skip to content

Commit

Permalink
Update solmate-nft.md (#1256)
Browse files Browse the repository at this point in the history
update `Ownable` constructor args.
  • Loading branch information
armatrix authored Aug 8, 2024
1 parent adcec64 commit b83a2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tutorials/solmate-nft.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ contract NFT is ERC721, Ownable {
string memory _name,
string memory _symbol,
string memory _baseURI
) ERC721(_name, _symbol) {
) ERC721(_name, _symbol) Ownable(msg.sender) {
baseURI = _baseURI;
}
Expand Down

0 comments on commit b83a2ff

Please sign in to comment.