我在跟踪帕特里克视频"https://www.youtube.com/watch?v=9oERTH9Bkw0&t=5700s“时,我在2:31:20遇到了这个错误,视频中的代码几乎和我的一样,仍然无法工作。
//probably error is here below
await transactionResponse.wait(1);
log(`Now let's finish the mint...`);
let finish_tx = await randomSVG.finishMInt(tokenId, { gasLimit: 2000000, gasPrice: 20000000000 });
await finish_tx.wait(1);
log(`You can view the tokenURI here ${await randomSVG.tokenURI(0)}`);
}
};
module.exports.tags = ["all", "rsvg"];发布于 2022-05-04 17:06:32
把所有的值,你正在传递的内部引号‘或“,这应该是有效的!
https://stackoverflow.com/questions/71909416
复制相似问题