Skip to content

Commit

Permalink
refactor: removed default params
Browse files Browse the repository at this point in the history
  • Loading branch information
TheChronicMonster committed Oct 19, 2022
1 parent f741290 commit f1bdb78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple-nft-minter/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const opts = {
note: Uint8Array[1],
};

const mintNFT = async (minter, name, symbol, opts = {supply, url, c: null, f: null, defaultFrozen: false, reserve: null, note}) => {
const mintNFT = async (minter, name, symbol, opts = {supply, url, c, f, defaultFrozen, reserve, note}) => {
console.log(`Creating the NFT`);
const theNFT = await stdlib.launchToken(minter, name, symbol, opts);
console.log(theNFT);
Expand Down

0 comments on commit f1bdb78

Please sign in to comment.