Skip to content

Commit

Permalink
Merge pull request #113 from blockfrost/chore/remove-debug-logs
Browse files Browse the repository at this point in the history
chore: remove console.logs
  • Loading branch information
1000101 committed Jul 9, 2023
2 parents dc46674 + b0aaf7d commit baab7e2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/assets/asset/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ async function route(fastify: FastifyInstance) {

const datumHex = rows[0] ? rows[0].cbor : null;

console.log('datumHex', JSON.stringify(datumHex));
if (datumHex) {
try {
const datumMetadata = getMetadataFromOutputDatum(datumHex, {
Expand All @@ -65,7 +64,6 @@ async function route(fastify: FastifyInstance) {
const result = validateCIP68Metadata(datumMetadata, referenceNFT.standard);

if (result) {
console.log('result.extra', JSON.stringify(result.extra));
onchainMetadata = result.metadata;
onchainMetadataStandard = result.version;
onchainMetadataExtra = result.extra ?? null;
Expand Down

0 comments on commit baab7e2

Please sign in to comment.