Skip to content
Discussion options

You must be logged in to vote

Found a little bug and here's the fix. Simply replace this part of the code in ./utils/rarity.js file:

// console.log(tokenRarities);
  console.table(tokenRarities);
  options.outputRanking ? outputRankingCSV(tokenRarities) : null;
}

with this:

  console.log(tokenRarities);
  console.table(tokenRarities);
  options.outputRanking ? true : outputRankingCSV(tokenRarities);

The Results:

Enjoy :)

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by AlHashemiUAE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant