Skip to content

Commit

Permalink
Merge pull request #33 from thepeanutgalleryandco/v-1-6-3
Browse files Browse the repository at this point in the history
Selected Traits List Object Creation Moved
  • Loading branch information
thepeanutgalleryandco committed Mar 15, 2022
2 parents 9c4be3f + 8d4aadd commit 22082f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-and-mint-nft-collection",
"version": "1.6.2",
"version": "1.6.3",
"description": "Source code to create and mint generative art via NFTPort API. Special thanks to codeSTACKr and Hashlips for their source codebase.",
"main": "index.js",
"bin": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ var metadataList = [];
var attributesList = [];
var dnaList = new Set();
const DNA_DELIMITER = "-";
const selectedTraitsList = new Set();
const HashlipsGiffer = require(`${FOLDERS.modulesDir}/HashlipsGiffer.js`);

const { needsFiltration } = require('./filters');
Expand Down Expand Up @@ -398,6 +397,7 @@ const startCreating = async () => {
? console.log("Editions left to create: ", abstractedIndexes)
: null;
while (layerConfigIndex < layerConfigurations.length) {
const selectedTraitsList = new Set();
const layers = layersSetup(
layerConfigurations[layerConfigIndex].layersOrder
);
Expand Down

0 comments on commit 22082f9

Please sign in to comment.