Skip to content

Commit

Permalink
changed mintNfts to safeMint
Browse files Browse the repository at this point in the history
  • Loading branch information
NidhiKJha committed Dec 16, 2022
1 parent c45fb63 commit 27c7c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/seeder/ganache-seeder.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class GanacheSeeder {
await contract.deployTransaction.wait();

if (contractName === SMART_CONTRACTS.NFTS) {
const transaction = await contract.mintNfts(1, {
const transaction = await contract.safeMint(1, {
from: fromAddress,
});
await transaction.wait();
Expand Down

0 comments on commit 27c7c87

Please sign in to comment.